Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これらのルールに従って行に一致するクエリを作成しようとしています:
そうすることは可能ですか?
ありがとう
これですか?
SELECT * FROM table WHERE row BETWEEN 'MATCH_2' AND 'MATCH_5';
またはintに変換
SELECT * FROM table WHERE CAST(SUBSTRING(row FROM 7) AS UNSIGNED) BETWEEN 2 AND 5;