これはうまくいくかもしれません:
select case when p.name is null then 'NO' else 'YES' end as barcode_exists, t.barcode
from product as p
right join (
select 681027 as barcode union
select 8901030349379 union
select 679046 union
select 679047 union
select 679082 union
select 679228 union
select 679230 union
select 679235 union
select 679236 union
select 679238 union
select 679328 union
select 679330 union
select 679528 union
select 679608
-- all the rest barcodes
) as t on p.barcode = t.barcode
union
チェックしたいすべてのバーコードを入れてください。
広告:
バーコードと回答に一致する2つの列を返します 指定しない限り、行の順序で中継できないためです。