快速创建SQL数据表:简单易懂的建表语句
CREATE TABLE table_name ( column1 datatype, column2 datatype, column3 datatype, ... );
例如:
CREATE TABLE students ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(50) NOT NULL, age int(11) NOT NULL, gender varchar(10) NOT NULL, PRIMARY KEY (id) );
原文地址: https://www.cveoy.top/t/topic/nhVc 著作权归作者所有。请勿转载和采集!