これは私がやりたいことで、 'the'と3〜8文字で始まる本のタイトルを取得してから、特定のテキストの 'CONCAT'テーマを取得します。 私はこれを試してみましたが、それはうまくいきませんでした:これは私が得るものですMySqlのREGEXPを入れ子にしたSELECT
select concat((select title from books where title REGEXP '^the.{3,8}$'), '.....') from books;
:
+-----------------------------------------------------------------------------+
| concat((select title from books where title REGEXP '^the.{3,8}$'), '.....') |
+-----------------------------------------------------------------------------+
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
| The Circle..... |
+-----------------------------------------------------------------------------+
16 rows in set (0.00 sec)
サンプル結果を教えてください。 – cdaiga
あなたの正規表現 '^ the。{3,8} $'は 'books'テーブルの' title'が 'the'で始まり' 3-8'文字で終わることを示唆しています。これは、あなたの望むことですか ? – SALEH
出力を追加しました –