傳回一個字串,其中指定字串的字元順序反轉。
語法
StrReverse ( 表示 式)
必要 表達式 自變數是字元必須反轉的字串。 如果 expression 是零長度字串 (“) ,則會傳回零長度字串。 如果 expression 為 Null,則會發生錯誤。
範例
Expression |
結果 |
SELECT strReverse (ProductID) AS ReversedID FROM ProductSales; |
從資料表 「ProductSales」 以反轉字元順序傳回 「ProductID」,並在 ReverseID 欄中顯示結果。 |