Say I have a table that looks like this...
I have a query that looks like this....
This query works fine and returns the data I want so far.
Now, it is possible at time that COLA and COLB could have duplicate data, yet the remainder of the columns will be different. (ex below) In these cases I need I only want to see one row, but the entire row be returned... Is this possible?
Code:
COLA COLB COLC COLD COLE COLF
Code:
SELECT COLA, COLB, COLC, COLD, COLE, COLF from mydatabase where COLD <= '5' and COLE >= '5';
Now, it is possible at time that COLA and COLB could have duplicate data, yet the remainder of the columns will be different. (ex below) In these cases I need I only want to see one row, but the entire row be returned... Is this possible?
Code:
COLA COLB COLC COLD COLE COLF Jenny B 1 2 3 4 Jenny B 2 3 4 5
Comment