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.
一連の値を行として選択する良い方法が必要です。
これが私がやりたいことの例です:
mysql> select 1 as v union select 2; +---+ | v | +---+ | 1 | | 2 | +---+ 2 rows in set (0.00 sec) mysql>
このようなクエリを作成するより良い方法はありますか?
値のリストは、クエリの生成時に認識されます。