
MySQL
文章平均质量分 91
风中之神111
我亦飘零久
展开
-
MySQL学习
有用的mysql学习路线,这是我看过的博客里,最用心的一个。希望能帮到你。基本操作:http://www.cnblogs.com/whgk/p/6131285.html数据类型: http://www.cnblogs.com/whgk/p/6142780.html查询(重点):http://www.cnblogs.com/whgk/p/6149009.html插入,更新,删除(自我感觉较简...原创 2018-10-29 11:45:02 · 155 阅读 · 0 评论 -
MySql设置唯一标识主键等设置
建立表create table user_score( name char(10) not null default “”, score smallint not null default 0 );增加一列alter table user_score add column id smallint after name; ( 不要引号) alter table user_score ...原创 2018-10-29 11:55:53 · 5291 阅读 · 0 评论