SQL常用內建函式

2022-02-20 02:12:00 字數 771 閱讀 5789

select

max(字段) from 資料庫表名

select

min(字段) from 資料庫表名

select

len(字段) from 資料庫表名

select

substring(字段,擷取起始位,擷取長度) from 資料庫表名

select

cast(字段 as 轉換的型別) from

資料庫表名

select

convert(轉換的型別,字段) from 資料庫表名

select row_number()over(order

by 欄位1,欄位2) from

資料庫表名

select'hc

'+right('

000000'+

cast(row_number()over(order

by materialname) as

varchar(10)),6) from material

select

count(字段) from 資料庫表名

select

replace(字段,'

原字段值

','需要替換的值

') from 資料庫表名

select

sum(字段) from 資料庫表名

常用內建函式

print bytes 你好 encoding utf 8 print bytes 你好 encoding utf 8 decode 解碼 print bytes 你好 encoding gbk 輸出 b xe4 xbd xa0 xe5 xa5 xbd 你好b xc4 xe3 xba xc3 pri...

ASP常用內建函式

在asp中,把帶有返回值的這樣的一段 叫做函式。例如通過編寫一段 計算出乙個自然數是否是質數,返回給呼叫程式,由於呼叫程式需要知道那個自然數是否是質數,所以必須要返回乙個值。1,日期 時間函式 這些函式包括對 年 月 日 時 分 秒 星期 等的顯示。1 now函式 根據計算機系統設定的日期和時間,返...

Python常用內建函式

1 絕對值 abs 1 2 最大最小值 max 1,2,3 min 1,2,3 3 序列長度 len abc len 1,2,3 len 1,2,3 4 取模 divmod 5,2 2,1 5 乘方 pow 2,3,4 2 3 4 6 浮點數 round 1 1 函式是否可呼叫 callable f...