creata table t(x int(6) zerofill,y int);
insert into t(x,y) values(1,1);
select x,y from t;

本文演示了如何使用SQL创建表、插入数据并进行基本的数据查询,包括使用xint(6)zerofill和yint类型,以及利用insert、select语句进行操作。
creata table t(x int(6) zerofill,y int);
insert into t(x,y) values(1,1);
select x,y from t;

转载于:https://www.cnblogs.com/JiangLe/p/4391760.html
8183

被折叠的 条评论
为什么被折叠?