SELECT Agendamento.E3TimeStamp AS Data,Agendamento.Lote, Produtos_values.name as NomeProduto, Produtos_ValueData.TemplateID AS mp_produto
FROM produtos_values
inner join produtos_valuedata on produtos_values.id = produtos_valuedata.valueid,agendamento
This query
works fine, but I need to do another Inner Join
using the same table_products_values like this:
inner join produtos_values on produtos_values.name = agendamento.produto
separated they work but not together, how can I make both work?