今夜的头很冷 潜水
  • 3发帖数
  • 3主题数
  • 0关注数
  • 0粉丝
开启左侧

学数据库这么久了?SQL数据库底子函数都搞懂了吗?安排

[复制链接]
今夜的头很冷 发表于 2021-8-16 17:13:14 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

同步滚动:


                               
登录/注册后可看大图

SQL的基础函数

lower

select lower(name) from students #将students表的所有name字段的数据全都转为小写打印出来upper

select upper(name) from students #将students表的所有name字段的数据全都转为大写打印出来length

select length(name) from students #将students表的所有name字段的数据的长度打印出来substr

select substr(name,1,3) from students; #name字段从1的位置向后截取3位打印出来   比方David -->Davselect substr(name,2,3) from students; #name字段从2的位置向后截取3位打印出来   比方David -->avi注意:sql的下标是从1开始
concat

select concat(name,'123') from students; #将students表的所有name字段的数据背面拼接123打印出来 比方David -->David123replace

select replace(name,'a','666') from students; #将students表的所有name字段的数据中的a更换为666 比方David -->D666vidifnull

select ifnull(hobby,'学习') from students #判断,如果hobby字段的值是null的用学习更换round & ceil & floor

select round(score) from students #四舍五入取整select round(score,1) from students #四舍五入,保存一位小数select ceil(score) from students #向上取整 7.1 --> 8select floor(score) from students #向下取整 7.9 --> 7now

select now() #现在的年与日,时分秒select curdate() #现在的年代日select curtime() #现在的时分秒year & month & day

select year(now()) #取现在的年select month(now()) #取现在的月select day(now()) #取现在的日hour()时&minute()分&second()秒

select hour(now()) #取现在的时select minute(now()) #取现在的分select second(now()) #取现在的秒标签: [数据库]



                               
登录/注册后可看大图
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

猜你喜欢
在线客服邮箱
wxcy#wkgb.net

邮箱地址#换为@

Powered by 创意电子 ©2018-现在 专注资源实战分享源码下载站联盟商城