you are probably looking for unique
if not, I am not understanding what you are trying to do
Dave
>-Original Message-
>From: Jeremy Morano [mailto:[EMAIL PROTECTED]]
>
>I wondering if it was possible to use limit on part of a query and not all.
>
>this is my query which works the way it
This is a sql question:
Limit is limiting number of records that will come out of
query. So, it would not work.
SELECT users.names
FROM users, selection
Where users.name = selection.name
and setting = 'on' ;
you could use
SELECT DISTINCT users.names
FROM users, selection
Where users.
Hi,
I wondering if it was possible to use limit on part of a query and not all.
this is my query which works the way it should.
$sql = "SELECT users.names
FROM users, selection
Where users.name = selection.name and setting = 'on' limit 1
";
What I would li
3 matches
Mail list logo