If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Select Where

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-29-04, 22:32
brmk brmk is offline
Registered User
 
Join Date: Mar 2004
Posts: 79
Select Where

Help!

What am I doing wrong?

"SELECT tblInvoiceHdr.InvoiceNumber, tblCustomers.CustName," & _
"tblInvoiceHdr.Date FROM tblCustomers RIGHT JOIN tblInvoiceHdr ON " & _
"tblCustomers.CustNumber = tblInvoiceHdr.BillToNumber " & _
"WHERE tblInvoiceHdr.Posted <> 'Y' ORDER BY tblInvoiceHdr.InvoiceNumber;"


It works fine until I put the Where tlbInvoiceHdr.Posted <> 'Y'. But I need to narrow the search using this data selection.
Reply With Quote
  #2 (permalink)  
Old 07-30-04, 05:29
andrewst andrewst is offline
Moderator.
 
Join Date: Sep 2002
Location: UK
Posts: 5,171
"WHERE tblInvoiceHdr.Posted <> 'Y'" will not select records where that column is NULL.
__________________
Tony Andrews
http://tinyurl.com/tonyandrews
Reply With Quote
  #3 (permalink)  
Old 07-30-04, 08:36
brmk brmk is offline
Registered User
 
Join Date: Mar 2004
Posts: 79
Thank You...I changed to ..."WHERE tblInvoiceHdr.Posted Is Null" and it works fine.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On