Advertisement
Liger86

Untitled

Mar 28th, 2020
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.30 KB | None | 0 0
  1. create database AspExampleEmpty
  2. go
  3.  
  4. use AspExampleEmpty
  5. go
  6.  
  7. create table [User]
  8. (
  9.     [ID] int primary key identity not null,
  10.     [Email] nvarchar(50) not null,
  11.     [Password] nvarchar(250) null
  12. )
  13.  
  14. create table [Task]
  15. (
  16.     [ID] int primary key identity not null,
  17.     [Title] nvarchar(500) not null,
  18.  
  19. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement