📜  创建表sql代码示例

📅  最后修改于: 2022-03-11 15:05:05.339000             🧑  作者: Mango

代码示例6
Creates a new table .
Example: Creates a new table called ‘users’ in the ‘websitesetup’ database.
CREATE TABLE users (
id int,
first_name varchar(255),
surname varchar(255),
address varchar(255),
contact_number int
);