1. Str()函數:
在MS Access中,Str()函數以字符串格式返回數字。在此函數中,我們可以傳遞任何數字,該函數將以字符串格式返回該數字。
用法:
Str(number)
範例-
SELECT Str(100) AS ConvertToString;
輸出-
ConvertToString |
---|
100 |
範例-
SELECT Str(421) AS ConvertToString;
輸出-
ConvertToString |
---|
421 |
2. StrComp()函數:
在MS Access中,StrComp()函數比較兩個字符串。它將使用兩個參數string1,string2作為參數。如果兩個字符串相同,則返回0,如果第一個字符串大於第二個,則返回1,如果string1 <string2,則返回-1,如果string1或string2為null,則返回null。
用法:
StrComp(string1, string2)
範例-
SELECT StrComp("geeksforgeeks", "gfg") AS CompString;
輸出-
複合字符串 |
---|
-1 |
範例-
SELECT StrComp("gfg", "geeksforgeeks") AS CompString;
輸出:
複合字符串 |
---|
1 |
相關用法
- SQL Server STR()用法及代碼示例
- MS Access Hex()、Oct()用法及代碼示例
- MS Access SLN()、SYD()用法及代碼示例
- MS Access DDB()、FV()用法及代碼示例
- MS Access Val()、Sum()用法及代碼示例
- MS Access Sgn()、Sqr()用法及代碼示例
- MS Access StrConv()、StrReverse()用法及代碼示例
- MS Access Chr()、Asc()用法及代碼示例
- MS Access InStr()、InstrRev()用法及代碼示例
- MS Access LCase()、UCase()用法及代碼示例
- MS Access Replace()、Space()用法及代碼示例
- MS Access Exp()、Count()用法及代碼示例
- MS Access Mid()、Len()用法及代碼示例
- MS Access LTrim()、RTrim()用法及代碼示例
- MS Access Left()、Right()用法及代碼示例
- MS Access Max()、Min()用法及代碼示例
- MS Access Fix()、Format()用法及代碼示例
- MS Access Second()、Time()用法及代碼示例
- MS Access MonthName()、Now()用法及代碼示例
- MS Access Month()、Minute()用法及代碼示例
- MS Access Day()、Hour()用法及代碼示例
- MS Access Date()、DateAdd()用法及代碼示例
- MS Access Abs()、Avg()用法及代碼示例
注:本文由純淨天空篩選整理自cse1604310056大神的英文原創作品 Str() and StrComp() Function in MS Access。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。