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.
段落で「区切られた」表の行にデータがあります。各段落のデータを個別に選択して表示する必要があります。
<p>1 The Turtle is slow. </p> <p>2 The Rabbit is fast. </p> <p>3 The Horse eats hay. </p>
これを行うことさえ可能ですか?そうでない場合、それを機能させる他の方法はありますか?
を使用してsubstring_index()、基本的にこれを行うことができます。
substring_index()
最初の段落が必要な場合:
select replace(substring_index(col, '</p>', 1), '<p>', '')
2番目の場合:
select replace(substring_index(substring_index(col, '</p>', 2), '</p>', -1), '<p>', '')