Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 216 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 216 Bytes
use master
go

create database han
go

use han
go

create schema dbo
go

create table crypto
(
	timestamp datetime not null,
	value float not null
		constraint crypto_pk
			primary key nonclustered
)
go