MySQL基本语法
Posted xyxblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL基本语法相关的知识,希望对你有一定的参考价值。
mysql基本语法:
1、创建库:create database 库名;
创建带编码格式的库:create database 库名 character set 编码格式;
删除库:drop database 库名;
2、创建表:create table 表名(字段1 类型1,字段2 类型2,字段3 类型3...);
删除表:drop database 表名;
3、增(insert):
第一种格式:insert into 表名 (字段1,字段2,字段3,字段4)values(值1,值2,值3,值4),(值1,值 2,值3,值4),。。。
第二种格式:insert into 表名 set 字段1=值1,字段 2=值2,字段3=值3。。。;
4、删(delete):
delete from 表名 where 条件
such as :delete from 表名 where 学号=1;
5、改(update):
update 表名 set 字段1=值1,字段2=值2,字段3=值3,。。。 where 条件
such as:delete 表名 set name=‘张三‘ where 学号=‘01‘;
6、查(select):
select * from 表名; 查找表中所有数据
select 字段1,字段2,。。。 from 表名; 查找表中指定字段值
select 字段1 from 表名 where 条件; 查找指定表中指定字段的指定值
7、在MySQL中常见的逻辑运算符:与(and),或(or),非(not)
8、数据库查询语言(DQL):对表的查询语句,select
数据库定义语言(DDL):create database、drop database 、create table、drop table
数据库操作语言(DML):update 、insert 、delete
以上是关于MySQL基本语法的主要内容,如果未能解决你的问题,请参考以下文章