MySQL ユーザ変数を使用すると、クライアント側で一時変数を使用せずに結果を記憶することができます。 See 項6.1.4. 「ユーザ変数」。
たとえば、最高値および最安値が付けられている物品を取得するには、以下のクエリを実行します。
mysql>SELECT @min_price:=MIN(price),@max_price:=MAX(price) FROM shop;
mysql>SELECT * FROM shop WHERE price=@min_price OR price=@max_price;
+---------+--------+-------+ | article | dealer | price | +---------+--------+-------+ | 0003 | D | 1.25 | | 0004 | D | 19.95 | +---------+--------+-------+
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.