I have a MySQL database with 2 tables:
Table A:
id name age
123a John 34
143w Mark 27
143x Rony 30
Table B:
id company job
143w Google developer
I need:
id name age company job
123a John 34
143w Mark 27 Google developer
143x Rony 30
I need a select statement that can extract the result above.
Thanks in advance
Paulo