mysql基础命令
-
sql功能
DML(数据操作语言):用于检索或修改数据。 DDL(数据定义语言):用于定义数据的结构,如创建、修改或者删除数据库对象。 DCL(数据控制语言):用于定义数据库用户的权限。
-
查看数据库
show databases;
-
使用数据库
use test1;
-
查看数据库中表
show tables;
-
查看表结构
desc people;
-
数据库创建脚本
create table people( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(30) NOT NULL, password VARCHAR(30) NOT NULL, age INT NOT NULL, sex VARCHAR(2) DEFAULT\'男\', birthday date );
-
增加数据
insert into people (name,password,age,sex,birthday) values (\'zhangsan\',\'1997\',21,\'男\',\'2005-02-02\');
-
删除数据
delete from people where name=\'zhangsan\';
-
查询数据
select * from people; select age from people where name=\'zhangsan\';
-
修改数据
update people set age=36 where name=\'zhangsan\';