分享到:

随笔分类 -  DB

摘要: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 阅读(168) 评论(0) 推荐(0)