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 > Database Server Software > DB2 > Reusing Parameter Marker Values in a SQL Query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-04-09, 14:25
e8005 e8005 is offline
Registered User
 
Join Date: Sep 2008
Posts: 1
Question Reusing Parameter Marker Values in a SQL Query

The following query prompts twice - once for each parameter marker:

SELECT *
FROM ITEMS
WHERE UNITWEIGHT < ? AND NETWEIGHT < ? * 10

How can I get make the second parameter marker take on the value of the first one so the user is only prompted once? Can I name parameters in DB2 SQL?
Reply With Quote
  #2 (permalink)  
Old 05-05-09, 01:20
tonkuma tonkuma is offline
Registered User
 
Join Date: Feb 2008
Location: Japan
Posts: 2,203
How about this?

SELECT *
FROM ITEMS
, (VALUES CAST(? AS INTEGER) ) AS p(p_wt)
WHERE UNITWEIGHT < p_wt AND NETWEIGHT < p_wt * 10
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