/ Published in: SQL
Grab all users that never logged in.
Expand |
Embed | Plain Text
SELECT name, mail FROM users WHERE NOT access;
You need to login to post a comment.
berkes on 11/29/06
1 person have marked this snippet as a favorite
Grab all users that never logged in.
SELECT name, mail FROM users WHERE NOT access;
You need to login to post a comment.