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.
1桁の整数の間のすべての内容を取得するにはどうすればよいですか?この文字列のように:
7get this text9
私はもう試した:
SELECT * FROM `test` WHERE `file` REGEXP '[0-9](.*?)[0-9]'
しかし、これはmysqlエラーをスローします:
正規表現からエラー「繰り返し演算子オペランドが無効です」を取得しました
これはどうやるんですか ?
2つの繰り返し演算子が*あり、?互いにフォローしています。
*
?
を削除する?と、検索しているテキストが選択されます。
SQLフィドル