2
I’m using the Inner Join
to combine two tables:
SELECT eventos.colab_id, colaboradores.setor
FROM colaboradores INNER JOIN eventos
ON colaboradores.id = eventos.colab_id
So far so good, however I have cases where I need to eliminate the character " of eventos.colab_id
. The REPLACE
does this, but I am not knowing how to use the syntax along with the Inner Join
.
I can not update because I just want to consult, without changing the table.
– FenixS2