-----------数值函数
---绝对值
select abs(-123) from dual; --求模
select mod (12,5) from dual; --取整
--上限值
select ceil(123.45) from dual; --下限值
select floor (123.45) from dual; --四舍五入
select round(123.55) from dual; select round(123.5267,2) from dual;--参数2表示小数点保留几位数 select round(126.5267,-1) from dual;--参数-1表示小数点向左移动1位

  

字符串函数、替换函数----------------------------------------------------------------------------

--截取,直接舍掉
select trunc (123.52) from dual;
select trunc (126.5267,2) from dual; select cno, round ( avg(degree) ,2) from score group by cno; --计算字符串长度
select sname, length (sname) from student;
select * from student where length (sname)>2; --去空格
select trim (' 付 s十b 亮 ') from dual;
select ltrim (' 付 s十b 亮 ') from dual;
select rtrim (' 付s十b亮 ') from dual; --替换
select replace(' abc def ', ' ' , '#' )from dual;--把空格换成# select replace (sname, '王', '李') ,sname from student where sname like '王%'; --更新姓王的学生名称为姓李的
update student set sname = replace (sname, '王', '李') where sname like '王%'; -- 查找字符串
select instr ('bac', 'a') from dual; --数据库中索引和字符串位置从1开始 --截取字符串
select substr('abdjhwkfjf', 2) from dual; --从第2位截取后面所有
select substr('abdjhwkfjf', 2,5) from dual; --从第2个截取到第五位结束
select substr('abdjhwkfjf', -8,5) from dual; --从右边向左数8位向右截取5位长度,长度不能是负数 select sname, substr(sname,1,1) || '同学'from student ; --成绩为空的替换成0
select t.*, nvl (degree ,0) from score t; select t.*, nvl (degree ,100,0) from score t;-- 100是不为空的替换成100,为空的默认为0 --替换
select t.* , decode (ssex, '1' , '男' ,'2','女' ,'不知道') from student t; -- 返回当前用户
select user from dual ;

  

聚合函数------------------------------------------------------

--1.聚合函数   返回单个值
--记录条数
select count (sno)from student where sclass=95031; --查平均成绩
select sum(degree)/count (1) from score;
select avg(degree) 平均值 from score; --合计总成绩
select sum(degree) from score; --最高成绩
select * from score order by degree desc; select max (degree)最大值, min (degree)最小值,avg(degree) 平均值 from score;

  

时间函数-------------------------------------------------------------------------

--字符串数字之间运算

select cast('123'  as number ) +123 from dual;
----------------------时间函数
--查询系统时间
select sysdate from dual; insert into course values ('8-123','设计素描','856',sysdate); select sysdate +1 from dual;
--增加系统月份
select add_months (sysdate,2) from dual;
--查询系统本月最后一天
select last_day (sysdate) from dual;

  

转换函数-----------------------------------------------------------------

--22、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。

select t.sbirthday, to_char (t.sbirthday,'yyyy-mm-dd hh24:mi:ss') from student t where sno='108'

select sno,sname,sbirthday from student  where to_char (sbirthday,'yyyy')=
(select to_char (t.sbirthday,'yyyy') from student t where sno='108'); select * from student where sbirthday >= to_date('1977-1-1','yyyy-mm-dd');

  

内置函数----整理、例题 、xmin的更多相关文章

  1. python3.7 内置函数整理

    #!/usr/bin/env python __author__ = "lrtao2010" #python3.7 内置函数整理 #abs(x) #返回数字的绝对值. 参数可以是整 ...

  2. python3.7内置函数整理笔记

    #python3.7 内置函数整理 #abs(x) #返回数字的绝对值. 参数可以是整数或浮点数. 如果参数是复数,则返回其大小 # print(abs(1)) # print(abs(-1)) # ...

  3. python常用内置函数整理

    1.最常见的内置函数是print print("Hello World!") 2.数学运算 abs(-5) # 取绝对值,也就是5 round(2.6) # 四舍五入取整,也就是3 ...

  4. golang中字符串内置函数整理

    字符串内置函数 1. 判断字符串的长度 str := "korea国" fmt.Println("str len=", len(str)) 2. 字符串遍历,同 ...

  5. pythonchallenge学到的python内置函数整理

    第0关: 计算x的n次方: x**n 第一关: maketrans(from,to):建立一个翻译规则,将from翻译成to的翻译规则,因为要从from翻译成to,所以俩个参数的长度必须一致 tran ...

  6. python内置函数整理

    1. abs() 函数返回数字的绝对值 2 divmod() 函数把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b). 3, input() 相等于 eval(ra ...

  7. Python常用内置函数整理(lambda,reduce,zip,filter,map)

    匿名函数lambda lambda argument1,argument2,...argumentN :expression using arguments 1.lambda是一个表达式,而不是一个语 ...

  8. (二)SQL注入常用的内置函数整理(以MySql为例)

    [1]@@datadir 函数作用:返回数据库的存储目录构造SQL语句 select @@datadir;   [2]@@version_compile_os 函数作用:查看服务器的操作系统SQL语句 ...

  9. MySQL常用内置函数整理

    [1]@@datadir 函数作用:返回数据库的存储目录构造SQL语句 select @@datadir;ps:@@basedir返回mysql的根目录[2]@@version_compile_os ...

随机推荐

  1. OK6410移植madplay播放器,王明学learn

    对于ok6410的madplay移植主要包括三部分.声卡驱动移植,播放器的移植,以及alsa库的移植. 一.首先移植声卡驱动以及播放器 ok6410采用WM97系列的声卡芯片,要使得内核支持该驱动,首 ...

  2. SQL SERVER数据库的表中修改字段的数据类型后,不能保存

      在数据库里面建了一个表,可是由于对SQL SERVER的建表功能不熟悉,不知道把主键设成什么是好,就先设置了个TEXT类型,可是后来朋友们告诉我说,TEXT类型容易让数据文件变得很大,还 是改成一 ...

  3. ExpandableListView 里面嵌套GridView实现高度自适应

    很早之前做过一个商城的app 也是第一次做安卓. 实现的效果如下: 因为一开始做安卓,很多写的代码都不规范,在下面上代码的地方,还请高手指点(勿喷,楼主是自尊心很强的屌丝) 这个效果要解决2个大问题, ...

  4. Eclipse中Ctrl+方法名发现无法进入到该方法中……

    我现在的情况是,按住Ctrl点击该方法后,发现进入不到这个方法的定义. 后来我发现,是因为这个项目是在某个项目文件夹中,如下: 这时直接找到server这个项目就没有问题了,如图:

  5. 提取Windows用户密钥文件cachedump

    提取Windows用户密钥文件cachedump   Windows系统将用户信息和密钥存储在系统存档文件(System hive)和安全存档(Security hive)中.只要提取这些内容,就可以 ...

  6. Oracle 创建表空间一边串过程

    1.打开SQL Plus,根据提示输入用户名密码登录. 注意:如果是系统用户的话,只能用sysdba登录.例如:sys as sysdba,输入User的密码进行登录. 2.登录成功后,首先创建表空间 ...

  7. sprint 1 的总结

    sprint 1 的总结   做完第一个sprint冲刺,休息了两天,今天我们来总结一下. 1.之前没有看清楚要求,没有把我们的项目具体负责人的名单发出来,现在进行补充说明一下,便于大家了解我们的身份 ...

  8. MFC HTTP访问URL

    unsigned short nPort; //用于保存目标HTTP服务端口 CString strServer, strObject; //strServer用于保存服务器地址,strObject用 ...

  9. NoSQL-Redis【1】-控制台配置密码

    1.设置密码为123456 CONFIG SET requirepass 123456 2.验证密码 AUTH 123456 3.redis-cli连接 @ECHO OFF redis-cli.exe ...

  10. BZOJ4421 : [Cerc2015] Digit Division

    如果两个相邻的串可行,那么它们合并后一定可行,所以求出所有可行的串的个数$t$,则$ans=2^{t-1}$. 注意特判整个串不可行的情况,这个时候答案为0. #include<cstdio&g ...