标签:
从今天起,切换回windows,从新做skbbbs,再次聆听孙胜利老师的教诲。
-- 查看字符编码
show variables like ‘charset%‘;
use sfkbbs;
-- 创建数据库
create TABLE sfk_father_module(
id int not null PRIMARY KEY auto_increment,
module_anme VARCHAR(66) not null,
sort int
)engine="INNODB";
desc sfk_father_module;
SELECT * from sfk_father_module as f;
-- 修改表的默认值
alter table sfk_father_module alter COLUMN sort set DEFAULT 0;
标签:
原文地址:http://www.cnblogs.com/rocky-AGE-24/p/4903123.html