Query

Branagan

Registered User.
Local time
Today, 01:56
Joined
May 27, 2004
Messages
31
Hi,
I want to make a query where it displays everything apart from if it has say "hello" in the field. what criteria do i use ?

thanks in advance
 
Hi,

Use

SELECT *
FROM table
WHERE field NOT LIKE '*hello*'
 
works like a charm, cheers :D
 

Users who are viewing this thread

Back
Top Bottom