1
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 right, but I need to do another Inner Join
using the same table products_values so:
inner join produtos_values on produtos_values.name = agendamento.produto
separate they work but together they don’t, how can I make them both work ?