sql常用函數(shù)

查看字符的ascii碼值ascii(str),str是空串時返回0

select ascii('a');

查看ascii碼值對應(yīng)的字符char(數(shù)字)

select char(97);

拼接字符串concat(str1,str2...)

select concat(12,34,'ab');

包含字符個數(shù)length(str)

select length('abc');

截取字符串

left(str,len)返回字符串str的左端len個字符

select left('abc123',2);

right(str,len)返回字符串str的右端len個字符

select?right('abc123',2);

substring(str,pos,len)返回字符串str的位置pos起len個字符

select substring('abc123',2,3);

去除空格

ltrim(str)返回刪除了左空格的字符串str

select ltrim('? abcd')

rtrim(str)返回刪除了右空格的字符串str

select?ltrim('abcd? ')

trim([方向 remstr from str)返回從某側(cè)刪除remstr后的字符串str,方向詞包括both、leading、trailing,表示兩側(cè)、左、右

select trim('? bar? ');

select trim(leading 'x' FROM 'xxxbarxxx');

select trim(both 'x' FROM 'xxxbarxxx');

select trim(trailing 'x' FROM 'xxxbarxxx');

返回由n個空格字符組成的一個字符串space(n)

select space(10);

替換字符串replace(str,from_str,to_str)

select replace('abc123','123','def');

大小寫轉(zhuǎn)換,函數(shù)如下

lower(str)

select lower('aBcD');

upper(str)

select upper('aBcD');



數(shù)學(xué)函數(shù)

求絕對值abs(n)

select abs(-32);

求m除以n的余數(shù)mod(m,n),同運算符%

select mod(10,3);

select 10%3;

地板floor(n),表示不大于n的最大整數(shù)

select floor(2.3);

天花板ceiling(n),表示不小于n的最大整數(shù)

select ceiling(2.3);

求四舍五入值round(n,d),n表示原數(shù),d表示小數(shù)位置,默認(rèn)為0

select round(1.6);

求x的y次冪pow(x,y)

select pow(2,3);

獲取圓周率PI()

select PI();

隨機數(shù)rand(),值為0-1.0的浮點數(shù)

select rand();

還有其它很多三角函數(shù),使用時可以查詢文檔



日期時間函數(shù)

獲取子值,語法如下

year(date)返回date的年份(范圍在1000到9999)

select year('2016-12-21');

month(date)返回date中的月份數(shù)值

select month('2016-12-21');

day(date)返回date中的日期數(shù)值

select?day('2016-12-21');

hour(time)返回time的小時數(shù)(范圍是0到23)

select hour('12:50:30');

minute(time)返回time的分鐘數(shù)(范圍是0到59)

select minute('12:50:30');

second(time)返回time的秒數(shù)(范圍是0到59)

select second('12:50:30');



日期計算,使用+-運算符,數(shù)字后面的關(guān)鍵字為year、month、day、hour、minute、second

select '2016-12-21'+interval 1 day;

日期格式化date_format(date,format),format參數(shù)可用的值如下

獲取年%Y,返回4位的整數(shù)

獲取年%y,返回2位的整數(shù)

獲取月%m,值為1-12的整數(shù)

獲取日%d,返回整數(shù)

獲取時%H,值為0-23的整數(shù)

獲取時%h,值為1-12的整數(shù)

獲取分%i,值為0-59的整數(shù)

獲取秒%s,值為0-59的整數(shù)

日期-->字符串

select date_format('2019-3-12','%Y年%m月%d日');

字符串-->日期

select str_to_date('2019年3月12日','%Y年%m月%d日')

當(dāng)前日期current_date()

select current_date();

當(dāng)前時間current_time()

select current_time();

當(dāng)前日期時間now()

select now();







import datetime

import time

# 日期時間字符串

st = "2017-11-23 16:10:10"

# 當(dāng)前日期時間

dt = datetime.datetime.now()

# 1.把datetime轉(zhuǎn)成字符串

def datetime_toString(dt):

print("1.把datetime轉(zhuǎn)成字符串: ", dt.strftime("%Y-%m-%d %H:%M:%S"))

# 2.把字符串轉(zhuǎn)成datetime

def string_toDatetime(st):

print("2.把字符串轉(zhuǎn)成datetime: ", datetime.datetime.strptime(st, "%Y-%m-%d %H:%M:%S"))

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 1、整理今天所學(xué)的知識點 、、、、、、、、、、、、、、、、、、、、、、、、、、 2、內(nèi)置函數(shù) 1、字符串 1、le...
    世界如此美妙_32e2閱讀 479評論 0 0
  • 前言 最先接觸編程的知識是在大學(xué)里面,大學(xué)里面學(xué)了一些基礎(chǔ)的知識,c語言,java語言,單片機的匯編語言等;大學(xué)畢...
    oceanfive閱讀 3,395評論 0 7
  • pyspark.sql模塊 模塊上下文 Spark SQL和DataFrames的重要類: pyspark.sql...
    mpro閱讀 9,916評論 0 13
  • MYSQL 基礎(chǔ)知識 1 MySQL數(shù)據(jù)庫概要 2 簡單MySQL環(huán)境 3 數(shù)據(jù)的存儲和獲取 4 MySQL基本操...
    Kingtester閱讀 8,060評論 5 115
  • 我們每個人都深知,好的習(xí)慣對一個人是多么的重要。但真的要養(yǎng)成好的習(xí)慣確實比較困難。但既然出發(fā)點是好的,那就心...
    哈哈的幸福生活閱讀 1,042評論 0 2

友情鏈接更多精彩內(nèi)容