分享到:

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;





posted @ 2011-11-21 15:16  onliny  阅读(156)  评论(0编辑  收藏  举报