mysql
zhongchengl
这个作者很懒,什么都没留下…
展开
-
mysql的数据类型
mysql的增删改查 mysql中的数据类型 1,整形 tinyint 1 字节 smallint 2 字节 mediumint 3 字节 int 4 字节 bigint 8 字节 表示数字的时候分无符号和有符号型 以 tinyint 为例 tinyint(M) unsigned zerofill M: 宽度原创 2012-05-23 22:54:27 · 501 阅读 · 0 评论 -
刘道成 mysql 学习笔记2
仿ecshop建库 create database mugua charset utf8; use mugua; create table goods( goods_id int primary key auto_increment, cat_id smallint not null default 0, goods_sn char(15) not null default '', good原创 2012-06-25 23:32:05 · 5865 阅读 · 1 评论