私は、列としてaを持つテーブルAと、名前、住所としてテーブルBを持っています
テーブル A には入力として 1,1,2 があり、テーブル B には値として (1, hello , india), (1,hi, nowhere),( 2,hukka,china) があります
SELECT * FROM a
right join b
on a.a=b.a
and b.a=1
and a.a is not null
それは私を与えます
a a name address
1 1 hello india
1 1 hi nowhere
NULL 2 hukka china
aaのnull値がまだ表示されている理由の手がかり