[ad_1]
Let Say Table A
Let Say Table B
Name | Car |
---|---|
jon | bmw |
maya | mercedes |
I need exact 1 row of Table A where name also contains in Table B. Names in B are all lowercase.
What I tried:
select lower(name) from tableA intesects select lower(name) from tableB LIMIT 1;
But this gave me only name value not entire row (name, age)
For Jon I need as result.
| Jon | 23 |
because Jon is also contained in tableB as lowerCase.
[ad_2]