MySQL笔记01

显示数据库:show databases;

使用xxx数据库:use xxx;

显示xxx数据库下的表格:show tables;

创建yyy table:

CREATE TABLE `tb_emp1` (
  `id` int(11) DEFAULT NULL,
  `name` varchar(25) DEFAULT NULL,
  `deptId` int(11) DEFAULT NULL,
  `salary` float DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=gb2312;

查看table是什么类型的:describe yyy;

查看table:select * from yyy;

往table 中插入数据:insert into yyy values('22','zhangsan','33','1000');

删除talbe中某一条数据:delete from yyy where id=22;

删除table:drop table if exists yyy;

退出MySQL:quit;

 注意:SQL命令后面";"表示结束;

你可能感兴趣的:(数据库)