I have 2 tables in mySQL DB: A & B.
a, b, c columns.
Table A:
a(1) = 1
a(2) = 2
a(3) = 3
Table B:
a(1) = 1
a(2) = 2
So, we could see that in B table there is no row with a = 3. How could I request DB to find it?
So response (one row) could looks like:
a(1) = 3
b(1) =..
c(1) =..