如何檢查表格單元是否包含a number (i.e.: 2)
並檢索該行?找到號碼時列出行
表水果:
|----|---------|--------|
| id | type | name |
|----|---------|--------|
| 1 | 1,2,3 | Banana |
| 2 | 2,6,7 | Apple |
| 3 | 7,10 | Cherry |
|----|---------|--------|
例如,在這個表我需要列出的水果,其中含有type
2
。
香蕉
蘋果
如何做到這一點嗎?
您正在使用哪種數據庫系統? – Elyasin
我正在使用mySQL。 – user8201518
https:// stackoverflow。com/questions/4122193/how-to-search-for-rows-containing-a-substring – Elyasin