码迷,mamicode.com
首页 > 数据库 > 详细

MySQL基本语法

时间:2018-08-08 13:39:51      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:character   let   set   运算   cte   查找表   bsp   查询   tab   

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基本语法

标签:character   let   set   运算   cte   查找表   bsp   查询   tab   

原文地址:https://www.cnblogs.com/xyxblogs/p/9442033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!