|
Glad.http://publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/sqlp/rbafydeclaretemptbl.htm
Tried a brief manual search through Infocenter also. Automated search for
"temporary" put it at ninth on the list.
<midrange-l@xxxxxxxxxxxx>
Didn't think to look in Data Definition Language (DDL). Not like I've
done a presentation in DDL, eh Jeff?
Rob Berendt
--
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com
"Ryan Hunt" <ryan.hunt@xxxxxxxxxxxxx>
Sent by: midrange-l-bounces@xxxxxxxxxxxx
04/20/2007 10:16 AM
Please respond to
Midrange Systems Technical Discussion
news:OF4F1F567D.11A9D269-ON852572C3.004CCA77-852572C3.004D5FCC@xxxxxxxxxxx
To
midrange-l@xxxxxxxxxxxx
cc
Fax to
Subject
Re: SELECT with no FROM?
Wonderful. I scoured everywhere for this in the redbook documentation and
the iSeries Information Center.
I'm on V5R4 so I'm very happy to see I can start using TABLE variables!!
RH
<rob@xxxxxxxxx> wrote in message
.....+....1....+....2....+....3....+....4....+....5....+....6....+....7....+.
On V5R4 I have
DECLARE GLOBAL TEMPORARY TABLE TempTable(First VARCHAR(50), Middle VARCHAR(50), Last
VARCHAR(50))
Table TEMPTABLE created in QTEMP.
INSERT INTO QTEMP/TEMPTABLE (FIRST, MIDDLE, LAST) VALUES('Foo','Bar', 'ForMe')
1 rows inserted in TEMPTABLE in QTEMP.
select first, middle, last from TempTableunion
select first, middle, last from employees
...8....+....9....+...10....+...11.MIDRANGE-L@xxxxxxxxxxxx
FIRST MIDDLE LAST<midrange-l@xxxxxxxxxxxx>
Foo Bar ForMe
Rob O Berendt
Samwise Son of Hamfast
Gamgee
******** End of data ********
Cute way to put column headings into a output file, by the way.
Rob Berendt
--
Group Dekko Services, LLC
Dept 01.073
PO Box 2000
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com
"Ryan Hunt" <ryan.hunt@xxxxxxxxxxxxx>
Sent by: midrange-l-bounces@xxxxxxxxxxxx
04/20/2007 09:24 AM
Please respond to
Midrange Systems Technical Discussion
can
To
midrange-l@xxxxxxxxxxxx
cc
Fax to
Subject
SELECT with no FROM?
I am trying to do what I thought would be simple... MS SQL allows
selection
of hardcoded data in a "SELECT" statement without a from:
SELECT 'Foo" as First, 'Bar' as Middle, 'ForMe' as Last
You can thereby force a record to be returned with any result set:
SELECT First, Middle, Last FROM employees
UNION
SELECT 'Foo" as First, 'Bar' as Middle, 'ForMe' as Last
On MS SQL there is also a TABLE datatype...therefore a TABLE variable
beMIDRANGE-L@xxxxxxxxxxxx
used.
DECLARE @TempTable TABLE (First VARCHAR(50), Middle VARCHAR(50), Last
VARCHAR(50))
INSERT INTO @TempTable VALUES('Foo', 'Bar', 'ForMe')
SELECT First, Middle, Last FROM employees
UNION
SELECT First, Middle, Last FROM @TempTable
Is there a simple way to do something similar on the 400?
I've spent an hour going through SQL reference, Stored Procedure
reference,
and SQL concepts redbooks but I haven't found anything for this.
Thanks in advance!
RH
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list
To post a message email:
To subscribe, unsubscribe, or change list options,list
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email:MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
list
To post a message email:
To subscribe, unsubscribe, or change list options,list
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email:MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.