RE: where drink is not equal to pepsi

2003-03-21 Thread Daevid Vincent
I think this works too: Select * from Tablename where drinks 'pepsi'; -Original Message- From: Andrew Wilson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 4:49 PM To: '[EMAIL PROTECTED]' Subject: where drink is not equal to pepsi Hi guys, Hopefully have an

RE: where drink is not equal to pepsi

2003-03-20 Thread Andrew Wilson
Lol, I keep the cookie. I was just looking for the != syntax.. -Original Message- From: Andrew Wilson Sent: Friday, March 21, 2003 11:49 AM To: '[EMAIL PROTECTED]' Subject: where drink is not equal to pepsi Hi guys, Hopefully have an easy question for you guys. Whats wrong with

RE: where drink is not equal to pepsi

2003-03-20 Thread Dan Wright
Hi guys, Hopefully have an easy question for you guys. Whats wrong with this query Select * from Tablename where drinks is not = 'pepsi'; Driving me batty.. select * from CaseSensitiveTablename where drink != 'pepsi'; or select * from CaseSensitiveTablename where drink not like

RE: where drink is not equal to pepsi

2003-03-20 Thread Jon Wagoner
Select * from Tablename where drinks != 'pepsi'; Got any milk with that cookie? -Original Message- From: Andrew Wilson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 6:49 PM To: '[EMAIL PROTECTED]' Subject: where drink is not equal to pepsi Hi guys, Hopefully have an easy

RE: where drink is not equal to pepsi

2003-03-20 Thread Andrew Wilson
Lol.. beat me by 2 minutes.. Can i fed-x that cookie ? -Original Message- From: Jon Wagoner [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 11:54 AM To: Andrew Wilson; [EMAIL PROTECTED] Subject: RE: where drink is not equal to pepsi Select * from Tablename where drinks != 'pepsi