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 > Strange behaviour from NO_DATA_FOUND

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-13-03, 07:34
appoooh appoooh is offline
Registered User
 
Join Date: Aug 2003
Posts: 8
Strange behaviour from NO_DATA_FOUND

<deleted>

Last edited by appoooh; 10-29-03 at 07:58.
Reply With Quote
  #2 (permalink)  
Old 09-13-03, 12:02
andrewst andrewst is offline
Moderator.
 
Join Date: Sep 2002
Location: UK
Posts: 5,171
Re: Strange behaviour from NO_DATA_FOUND

This is because you have used a parameter name "address" which has the same name as a column in the People table. So this line:

AND address = People.Address

is treated as:

AND People.address = People.Address

Therefore, only the "author" parameter is actually being used in the SELECT.

You should prefix your parameter names, either like this:

p_author

Or in the SQL like this:

AND CheckAuthor.address = People.Address
__________________
Tony Andrews
http://tinyurl.com/tonyandrews
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