查询语句
关键字:SELECT
用法:
查询所有:
Select * from 表名
Select * from stuInfo
查询部分字段
Select 字段1,字段2,字段3… from 表名
Select stuName,stuSex from stuInfo
插入语句
关键字:insert
用法:
插入语句:
insert into 表名
                    (字段1,字段2…)
Values
                    (值1,值2…)
更新语句
关键字:update
用法:
更新语句:
update 表名
Set
                    字段1=‘值1’,
  字段2=‘值2’
Where
                    字段3=‘值3’
删除语句
sql中delete用法关键字:delete
用法:
删除语句:
Delete
  *
From
                        表名
where
                        字段1=‘值1’
去重复行
关键字:DISTINCT
用法:
去重复行:
select distinct 列名1 from 表名
select distinct depart from teacher
注意:DISTINCT必须放在所有列名前面
重命名语句
关键字:AS
用法:
select
    Sno as '学号',
    Sname as '姓名',
    Ssex as '性别',
    Sbirthday as'出生日期',
    Class as'班号‘
from
    student
区间语句
关键字:between
用法:
Select
    *
from
    score
where
degree between 60 and 80
指定条件语句
关键字:IN
用法:
select
    *
from
    score
where
degree in (85,86,88)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。