msql以某個字符串開頭條件查詢,除了like替代方式

1:以字段開頭模糊查詢的like的方法查詢code select * from t  where  t.user_code like 'A%'select 2:以字段開頭模糊查詢的left(字段,長度)的方法查詢方法 select * from t  where left(t.user_code, 1)='A';數據 3:字符間隔查詢段對應的值以 1,4,6 的格式查詢使用find_in_set查
相關文章
相關標籤/搜索