标签:myswl基础
1.连接:mysql [-h服务器 -u用户名 -p密码 数据库]
库相关:
2.查看库:show databases;
3.切换库:use 库名;
4.新建库:create database 库名;
5.查看当前所在库:select database();
6.删除库:drop database 库名;
表相关
1.查看当前库里的列表:show tables;
2.查看表的字段结构:desc 表名;
3.新建表:create table 表名(字段名1 字段类型(宽度) 约束条件,字段名1 字段类型(宽度) 约束条件);
4.插入一行数据:insert into 表名 values(字段名1 字段类型);
5.查看表内容:select * from 表名;
6.表的重命名:alter table stu rename to stu_info;
7.复制表:create table tea select * from stu_info;
8.修改表内容
增加表结构:alter table stu add likes set("film","game","book") not null default "game,film";
(添加新字段 add (默认追加在已有字段的末尾)
修改字段类型 modify
删除字段 drop
修改字段名 chang)
插入内容于首位:alter table stu add stu_id char(4) not null first;
插入内容于某项后:alter table stu add tel char(11) not null after sex;
删除指定字段:alter table stu drop age;
alter table stu drop email,drop qq;
修改字段类型:alter table stu modify name char(8);
alter table stu modify name char(8),modify sex enum("man","woman","boy") not null;
修改字段名:alter table stu change stu_id stu_num char(4) not null;
9.清空表内容:delete from 表名;
10.删除表:drop table 表名;
important
数据类型
00:创建学生信息表
姓名 性别 出生日期 家庭住址 身份证号 备注
本文出自 “刘福” 博客,请务必保留此出处http://liufu1103.blog.51cto.com/9120722/1656838
标签:myswl基础
原文地址:http://liufu1103.blog.51cto.com/9120722/1656838