As you can see in the print screen above, I am wondering, if it is possible to check if there is one thing in two tables at once. Without making 2 queries. I need to look, if "fajne-to-jest" is in table1 or table2. I'm doing it in 2 queries... but question is, is it possible to check this information using one query? Mabye something else? Most efficent way? The best way?
3条回答 默认 最新
doujie1908 2017-06-06 11:57关注You can use
existsin theselect:select (exists (select 1 from table1 where url = 'fajne-to-jest')) as in_table1, (exists (select 1 from table2 where url = 'fajne-to-jest')) as in_table2;本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
