SQL

作者: cd565483d108 | 来源:发表于2017-06-02 10:04 被阅读0次

    数据操作语言DML

    1、select

    select 列名1,列名2 from 表名
    select * from 表名
    select distinct 列名 from 表名
    select 列名 from 表名 where 列 运算符 值(字符串用单引号)
    select from where1 and/or where2
    select 列名1,列名2 from 表名 order by 列名1,列名2
    select 列名1,列名2 from 表名 order by 列名1,列名2 desc
    select 列名1,列名2 from 表名 order by 列名1 desc,列名2 asc

    2、update

    update 表名 set 列名 = 新值 where 列名 = 某值
    update 表名 set 列名1 = 新值1,列名2 = 新值2... where 列名 = 某值

    3、delete

    delete from 表名 where 列名 = 值
    delete * from 表名

    4、insert into

    insert into 表名 values (值1,值2...)
    insert into 表名 (列1,列2...) values (值1,值2...)

    数据库定义语言

    1、create database

    2、alter database

    3、create table

    4、alter table

    5、drop table

    6、create index

    7、drop index

    相关文章

      网友评论

          本文标题:SQL

          本文链接:https://www.haomeiwen.com/subject/ixiyfxtx.html