0
A
回答
1
試試這個
SELECT id,rcvusr FROM xyz WHERE rcvusr like 'user2%' ORDER BY eid desc LIMIT 10
0
Select id, sndusr, SUBSTRING_INDEX(rcvusr, '@@', 1), title
From xyz
Where rcvusr = 'user2' or
rcvusr like '[email protected]@%'
下面是文檔: http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_substring-index
相關問題
- 1. 使用循環顯示爆炸數據
- 2. MySQL查詢爆炸,數
- 3. php爆炸mysql行
- 4. 獲取爆炸數據複選框,以示與其他數據
- 5. 定製爆炸數據庫與NcbiblastxCommandline
- 6. Hive json數據爆炸選項不爆炸數組
- 7. 在PHP爆炸數據庫
- 8. 爆炸指數?
- 9. 爆/爆炸PHP數組
- 10. MySQL爆炸字符串?
- 11. mysql在查詢內爆炸
- 12. Mysql的優化和爆炸
- 13. PHP MYSQL編輯窗體,試圖爆炸/爆炸行復選框?
- 14. PHP爆炸函數
- 15. 爆炸數組值
- 16. PHP爆炸函數
- 17. 爆炸URL參數
- 18. 爆炸PHP數組
- 19. SparkSQL第二爆炸的第一爆炸
- 20. Imagettftext不能與wordwrap /爆炸
- 21. 分裂與爆炸在PHP
- 22. 在jQuery中爆炸與PHP
- 23. 如何爆炸數據從數據庫來與破折號
- 24. 爆炸數據庫數組PHP
- 25. php爆炸分號與數字?
- 26. 檢查是否值爆炸數組被複制與其他爆炸值
- 27. 使用爆炸,爆關聯數組
- 28. 爆炸陣列數據成行火花
- 29. 火花數據幀爆炸對列表
- 30. 火花數據幀爆炸功能
如果我使用SQL-SELECT ID,rcvusr從XYZ WHERE rcvusr = '用戶2' ORDER BY EID DESC LIMIT 10。它只顯示2條記錄(ID 13和14) – rathins
你好,_Jaywalker反模式_! //提示:不要在一個列中存儲多個值 –
嘗試像SQL一樣 - SELECT id,rcvusr FROM xyz WHERE rcvusr like'%user2%'ORDER BY eid desc LIMIT 10 – Anish