多くのテーブルがあり、そのうちのいくつかには列「項目」があります。簡単なクエリを作成したいので、必要な番号のアイテムを見つけることができるテーブルを確認できます。変数に関するいくつかの情報を読み、これを作成しました:
SET @Item_id =(there i put number) ;
select * from table1 where item=@Item_id;
select * from table2 where item=@Item_id;
select * from table3 where item=@Item_id;
select * ...(other tables)
問題は、DBMS が各テーブルの結果を含むタブを表示し、検索が成功したかどうかは関係ありません。結果のみのテーブルを表示するようにコードを更新するにはどうすればよいですか?
SET @Item_id = 29434;
SELECT
(select distinct item from creature_loot_template where item=@Item_id) as table1
(select distinct item from gameobject_loot_template where item=@Item_id) as table2
(select distinct item from item_loot_template where item=@Item_id) as table3