0
For example you presented the code below will serve:
Select Gerentes.*, Funcionario.* from Funcionario JOIN Gerentes ON (Funcionario.Nome = Gerentes.Nome)
Only a caveat. In the image that showed there is no key between the two tables (Managers and Employee). I did JOIN with the field NAME, Yeah, it was the only field I saw I could capture, but that’s not ideal.
If possible create a foreign key in the table so that this JOIN is more effective and useful ( in case there are two employees or managers with the same name this instruction will not work)
Creating a foreign key in Mysql
Ever tried to put the space in
* from
?– Woss
I just put and the same thing
– Nathan Silva
And correct the table name for "Managers"?
– Woss
I just tried that tbm kkkk
– Nathan Silva