创建测试表test
建表语句如下:
表1:
create table test(
id int identity(1,1) primary key,
numid int unique,
name varchar(20) not null,
school varchar(20),
addrid int,
foreign key(addrid) references test1(id));
表2࿱…
mysql 建表语句示例 In this article, I am going to explain the MySQL CREATE TABLE statement with examples. The following syntax contains basic statements to create a table in MySQL. 在本文中,我将通过示例解释MySQL CREATE TABLE语句。 以下语法包含在…