本文最后更新于 2024-12-05,文章内容可能已经过时。

增删改查

查看数据库

show databases;

进入数据库

use [库名];

查看数据表

show tables;

查看表里面的数据

select [字段名] from [表名] where [条件];
select * from user;

查看表结构

desc [表名];

升序排列

select * from test order by id asc;

asc => 升序 desc=> 降序排列

模糊查询

like

select * from test where like '%fl%';

子查询

select id from test where username=(select username from user);

新建一个数据库

create database [数据库名];

新建一个数据表

create table [表名] (字段名1 字段类型,字段名2 字段类型);
create table test (id int(20),username varchar(255));

插入数据

insert into [表名] (字段名1,字段名2) values (值1,值2);
insert into [表名] values (值);

新建字段

alter table [表名] add (字段名1 字段类型)

删除数据库

drop database [库名];

删除数据表

drop table [表名];

删除字段

alter table [表名] drop 字段名;

删除数据

delete from [表名] where [条件];

information_schema

库名 => table_schema

表名 => table_name

字段名 => column_name

修改数据

update [表名] set [字段名1] = [新值] where [条件]