Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Question About SQL String
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Question About SQL String

 Post Reply Post Reply
Author
Misty View Drop Down
Senior Member
Senior Member
Avatar

Joined: 06 February 2002
Location: United States
Status: Offline
Points: 711
Post Options Post Options   Thanks (0) Thanks(0)   Quote Misty Quote  Post ReplyReply Direct Link To This Post Topic: Question About SQL String
    Posted: 14 December 2004 at 2:05am
I would like to set a sql string to something like:
 
sqlString = sqlString & " where StaffID=" & StaffID
sqlString = sqlString & " and bio <> ""
 
I would like for the SQL String to only display records with a certain staffID and where the bio field is not blank. The bolded sql string above didn't work. I am not sure how to accomplish this. Can someone please help me with this?
Back to Top
Mart View Drop Down
Senior Member
Senior Member
Avatar

Joined: 30 November 2002
Status: Offline
Points: 2304
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mart Quote  Post ReplyReply Direct Link To This Post Posted: 14 December 2004 at 2:11am
try AND NOT bio = NULL
Back to Top
Misty View Drop Down
Senior Member
Senior Member
Avatar

Joined: 06 February 2002
Location: United States
Status: Offline
Points: 711
Post Options Post Options   Thanks (0) Thanks(0)   Quote Misty Quote  Post ReplyReply Direct Link To This Post Posted: 14 December 2004 at 2:23am
Unfortunately, it didn't work. I got the following error message: 
Microsoft VBScript compilation error '800a0409'

Unterminated string constant

sqlString = sqlString & " AND NOT bio = NULL
--------------------------------------------^

Back to Top
Gullanian View Drop Down
Senior Member
Senior Member
Avatar

Joined: 04 January 2002
Location: England
Status: Offline
Points: 4373
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gullanian Quote  Post ReplyReply Direct Link To This Post Posted: 14 December 2004 at 5:11am
Put another " at the end:

sqlString = sqlString & " AND NOT bio = NULL"
Back to Top
Misty View Drop Down
Senior Member
Senior Member
Avatar

Joined: 06 February 2002
Location: United States
Status: Offline
Points: 711
Post Options Post Options   Thanks (0) Thanks(0)   Quote Misty Quote  Post ReplyReply Direct Link To This Post Posted: 14 December 2004 at 1:46pm
I tried sqlString = sqlString & " AND NOT Bio = NULL". I didn't get an error message. But it didn't work. It would not show me records where the bio field was not null. I am not sure what is wrong. Can someone please help me with this?
Back to Top
Gullanian View Drop Down
Senior Member
Senior Member
Avatar

Joined: 04 January 2002
Location: England
Status: Offline
Points: 4373
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gullanian Quote  Post ReplyReply Direct Link To This Post Posted: 14 December 2004 at 1:51pm
SELECT * FROM tableName WHERE bio <> "" AND bio <> null

If you are not getting the expected results it pays to put them straight into the database query manager and testing results.


Edited by Gullanian - 14 December 2004 at 1:51pm
Back to Top
Misty View Drop Down
Senior Member
Senior Member
Avatar

Joined: 06 February 2002
Location: United States
Status: Offline
Points: 711
Post Options Post Options   Thanks (0) Thanks(0)   Quote Misty Quote  Post ReplyReply Direct Link To This Post Posted: 14 December 2004 at 2:01pm
I finally got it to work by using the following sql strings:
 
     sqlString = "select * from Staff"     
     sqlString = sqlString & " where StaffID=" & StaffID
     sqlString = sqlString & " and bio <> null
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.