2
Hello, I am unable to execute a query in mysql. I have a table that has the following fields:
numero | data | descricao | norma
001 | 2017-02-28 | Lapis | NBR
001 | 2017-02-28 | Lapis | ISO
As in the example above, there are records that have the same number, date and description, but the norm is different, so the query returns more than one line as a result.
I’ve tried using Distinct, group by but it didn’t work.
How can I mount this query to return me in a single line: the number, the date, the description that are equal and join in the same row the two standards?
It worked right, thank you very much!!!
– Henqsan