32.3. 深圳数据库

深圳有数据库SZ,里面有表SZ_Person,具体如下:

表 32.3. 深圳建表脚本

use SZ

create table SZ_Person(

sz_id char(50) primary key,

sz_name char(50),

sz_sex char(50),

sz_phone char(50),

sz_address char(50)

)