Can functions such as Min() or Max() possibly destroy the integrity of a record? Take the case of the query I recently crafted:
SELECT account, MIN(phone), MIN(chargeid), MIN(locationid) FROM import1 GROUP BY account, phone
is there any chance I am mixing my field data into a new record unintentionally? What if I changed one Min to a Max? Could I destroy record integrity if I chose to?
Thanks, Donovan