Posts by DANIEL DE OLIVEIRA • 29 points
2 posts
-
3
votes2
answers908
viewsA: INNER JOIN in the same table
da para Voce inner join with the same table using Alias different example: SELECT Agendamento.E3TimeStamp AS Data,Agendamento.Lote, Produtos_values.name as NomeProduto, Produtos_ValueData.TemplateID…
-
-1
votes2
answers1413
viewsA: Mysql - Select comparing fields from the same table
Utilize Inner Join to make the comparison: http://www.bosontreinamentos.com.br/mysql/mysql-inner-join-consultar-dados-em-duas-ou-mais-tabelas-29/ For example: select EP.COLUNA_ID AS ID, EP.COLUNA_2,…