中文(繁体)
SELECT substring_index( wantclass, ' ', 1 ) AS wclass FROM bd_resume WHERE user_id =42
wantclass為要截取字串對應的欄位名,
' '為要以什麼為截取字符的關鍵字符
1為關鍵字元出現的位置
-