Duplicate values

seanog2001

Registered User.
Local time
Today, 00:05
Joined
Jun 26, 2006
Messages
67
is there a way to stop duplicate values appearing in a query result.

i querying a table but i dont want to see the same value twice ca i prevent this?
 
if you are only returning one field in your query you could use the DISTINCT keyword in sql

e.g. SELECT DISTINCT fieldname FROM tablename

Can you give more details on what you are trying to do?
 

Users who are viewing this thread

Back
Top Bottom