Replace函數是用來改變一個字串的內容。這個函數的語法如下:
Replace(str1, str2, str3): 在字串 str1 中,當 str2 出現時,將其以 str3 替代。
舉個例子。假設我們有以下的表格:
Geography 表格
region_name | store_name |
East | Boston |
East | New York |
West | Los Angeles |
West | San Diego |
以下的 Replace 函數,
SELECT REPLACE(region_name, 'ast', 'astern')
FROM Geography;
會獲得如下的結果:
region_name |
Eastern |
Eastern |
West |
West |
沒有留言:
張貼留言