· 6 years ago · Dec 22, 2019, 04:13 PM
1use master;
2go
3
4drop database if exists lab13_db_2;
5go
6
7create database lab13_db_2;
8go
9
10use lab13_db_2;
11go
12
13create table Client
14(
15 PassportID int primary key not null
16 check (PassportID between 5 and 8),
17 FullName varchar(50) not null,
18 Birthday datetime not null,
19 Sex varchar(1) not null
20);
21go