sql基础常用函数总结

--查表,*可以替换为table列的名称,select是对table的筛选,*代表所有列
select * from table
--更新UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值
update table set username='jack'
--删除
delete from table
--删除一列
delete from table where username is null
--字符串处理
lower()--转化小写
select lower(username) from table
intcap--首字母大写
select initcap(username) from table
--截取
select substr(username,开始(int),结束(int)) from table
--判断字符串的位置
select instr('被搜索的字符串','希望搜索到的字符串') from table
--字符串替换,
select replace(列名,'需替换字段','替换字段') from table
--数字处理
--数字四舍五入
select round(列) from table
--小数截断
select trunc(列,截断几位) from table
--取余
select mod(列,取余第几位) from table

--日期转化
--to_date()yyyy-mm-dd hh24:mi:ss日期格式根据需求的修改
select to_date('2016-05-16 18:22:22','yyyy-mm-dd hh24:mi:ss') from table

--字符串处理函数 to_char(),to_numbe()r,to_date()

--to_char用法如图


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值