mysql使用

来源:互联网 发布:怎么做淘宝客服教程 编辑:程序博客网 时间:2024/06/02 05:41

1.mysql数据类型 http://www.jb51.net/article/55853.htm

2.常用语句:

show datables;show tables;插入:insert into user(id,NAME,age)values(3,"你猜猜",10); 
描述表结构: describe tablename;
新建表: create table scoreTest(clientID int(20),IdentityID int(18), score int(3), addition varchar(20));