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 > Selecting multiple columns into variables (in trigger)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-21-08, 03:43
dwouters dwouters is offline
Registered User
 
Join Date: Aug 2008
Posts: 4
Selecting multiple columns into variables (in trigger)

Hey,

I'm starting with DB2 triggers and I'm wondering how I can make a select with multiple columns into variables. Here is what I've been doing to select one column:

Code:
declare myVar smallint;
set myVar = (select colA from myTable where ....);
Now what if I want to select the columns colA and colB from myTable into two variables? Do I have to make two selects, or is there a better way?

Thanks
Reply With Quote
  #2 (permalink)  
Old 08-21-08, 05:11
stolze stolze is offline
Registered User
 
Join Date: Jan 2007
Location: Jena, Germany
Posts: 2,662
You can use this:
Code:
SET ( myVar1, myVar2 ) = ( SELECT colA, colB FROM myTable WHERE ... );
__________________
Knut Stolze
IBM DB2 Analytics Accelerator
IBM Germany Research & Development
Reply With Quote
  #3 (permalink)  
Old 08-25-08, 03:37
dwouters dwouters is offline
Registered User
 
Join Date: Aug 2008
Posts: 4
Perfect, thanks!
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