· 6 years ago · Dec 22, 2019, 04:14 PM
1use master;
2go
3
4drop database if exists lab14_db_2;
5go
6
7create database lab14_db_2;
8go
9
10use lab14_db_2;
11go
12
13create table VisaCenter
14(
15 VisaCenterName varchar(30) primary key not null,
16 WorkTime time not null default '10:00:00'
17);
18go