關於MySQL split函式的使用

2021-10-23 03:55:45 字數 647 閱讀 4374

由於不想編寫**,所以想著優先用sql語句來編寫

我的資料庫有個字段是位址,由於歷史遺留問題 位址的標籤類似於"廣東省 廣州市 天河區 客運站",

好在預留了空格,所以想到用split來取值;

substring_index( address , 』 ', 1 ) 這一頁取出來是廣東省 substring_index( address , 』 ', 2 )這樣是取不到廣州市的,需要用這個 substring_index(substring_index( address , 』 『, 2 ),』 ',-1) 來取廣州市

select 

substring_index( address , ' ', 1 ) as province ,

substring_index(substring_index( address , ' ', 2 ),' ',-1) as city,

substring_index(substring_index( address , ' ', -2 ),' ',1) as ,

substring_index( address , ' ', -1 ) as d,remark

from t_address order by province desc ;

便於後面自己查閱

關於DLL的函式

關於dll的函式 用於宣告匯入匯出函式 declspec dllexport 宣告乙個匯出函式,一般用於dll中 declspec dllimport 宣告乙個匯入函式,一般用於使用某個dll的exe中 更詳細的可以看msdn 動態鏈結庫中定義有兩種函式 匯出函式 export function 和...

作業 關於函式的

public class test02 hello system.err.println bye 可以完成特定功能的 塊,並且能重複呼叫 返回值 函式名 引數列表 函式體 public static void hello public static void println int x public...

關於next permutation函式的模擬!

現在有一道很簡單的題目,那就是輸出1 n的所有排列數!比如說,輸入n 5 那麼要求求出1,2,3,4,5這幾個數所有的排列數!c 中有乙個next permutation函式,它包含在algorithm標頭檔案中,可以方便的求出所有的排列 數,可是你知道它是怎麼實現的麼?現在,我對那個函式進行了簡單...