MYSql データベースにクエリがあります。テーブルorder_det
があり、テーブルの列remarks_desc
には次のエントリが含まれています。
テーブル構造:
Table: order_det
Columns: rec_id, remarks_desc
order_det テーブルのサンプル レコード
rec_id remarks_desc
_________________________________________________________
1 a specific PROGRAMMING problem
2 A software Algorithm
3 software tools commonly USED by programmers
4 Practical, answerable problems that are unique to the programming profession
5 then you’re in the right place to ask your question
6 to see if your QUESTION has been asked BEFORE
私の要件は、すべて大文字で保存されたもう 1 つの単語を含むレコードのみを選択することです。上記の 6 つのレコードから、1,3,6 レコード以下のみを選択したい:
rec_id remarks_desc
__________________________________________________
1 a specific PROGRAMMING problem (it contains one all uppercase word PROGRAMMING)
3 software tools commonly USED by programmers (it contains one all uppercase word USED)
6 to see if your QUESTION has been asked BEFORE (it contains two all uppercase words QUESTION and BEFORE)
LIKE、REGEXP を使用してこれをアーカイブしようとしましたが、間違った結果が得られました。正しい結果を得るために私を助けてください。