SQL实践之路 1

SQL实践之路1

创建USER表

drop table  if exists t_user;
create table t_user (
id int primary key auto_increment,
name varchar(25) not null,
address varchar(255)
)

查看表结构

desc table_name;





原文地址:https://www.cnblogs.com/onliny/p/2257232.html