I have this table
NAME|VALUE|
T | A
T | NONE
T | B
S | NONE
where the value NONE is a NULL value in real.
I need to do a query who will return all lines BUT if th name have a value i should ONLY return the line with his value like this in result for the table above:
NAME|VALUE|
T | A
T | B
S | NONE
Do you know to do such query?
Thanks in advance for your help.