博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL 常用语句摘录
阅读量:6124 次
发布时间:2019-06-21

本文共 987 字,大约阅读时间需要 3 分钟。

1、取不重复的工资信息

    Select distinct salary from table1   

    注:distinct是对整个结果集进行重复处理的,而不是针对每一个列。 如distinct后有多列,则是针对多列,不是单列  例:select  distinct salary,sName from table1

 

2、在表中新加一列

    alter table table1 add colum varchar(20) null;

 

3、Union

   select name,password from table1 union select name,password from table2

   注:union前后两个select后的选项需要保持一致,而union也会将重复数据行去掉保留一条,如果想他全部显示出来则在union后面加上all

        select name,password from table1 union all select name,password from table2

 

4、函数

    ABS() 求绝对值

    celling() 舍入到最大整数

    round() 四舍五入

    floor() 舍入到最小整数

    len() 计算字符串长度

    lower()、upper() 转小写 大写

    ltrim()   去掉左边字符串空格

    rtrim()   去掉右边字符串空格    如果需要去掉左右两边则:ltrim(rtrim('  b   ' ))

    substing(str,start_position ,length) 截取字符串。string被截字符串,start_position 起始位置,length长度

    getdate()  取得当前日期时间

    dateadd(datepart,number,date) 计算增加以后的日期。date为待计算的日期,datepart为计量单位,如day,month等,number为增量

         如:select dateadd(day,3,getdate())

    datediff(datepart,startdate,enddate)计算两个日期间的差额   ,datepart为计量单位,startdate起始时间,endstart结束时间

转载于:https://www.cnblogs.com/root7/archive/2012/03/02/2376684.html

你可能感兴趣的文章
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>
IIS7如何显示详细错误信息
查看>>
Android打包常见错误之Export aborted because fatal lint errors were found
查看>>
Tar打包、压缩与解压缩到指定目录的方法
查看>>
新手如何学习 jQuery?
查看>>
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>
HTML模块化:使用HTML5 Boilerplate模板
查看>>
登记申请汇总
查看>>
Google最新截屏案例详解
查看>>
Office WORD如何取消开始工作右侧栏
查看>>