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;