How do I get all the field data for records in MySQL that have with a select distinct?
If I do a Select Distinct field1,field2,field3 does that mean that each field must be unique or that only field1 must be?
It's late and I'm confused. I know that DISTINCTROW requires all to be distinct, but can't get regular DISTINCT to work right.
If I do a Select Distinct field1,field2,field3 does that mean that each field must be unique or that only field1 must be?
It's late and I'm confused. I know that DISTINCTROW requires all to be distinct, but can't get regular DISTINCT to work right.