× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



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 can be
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




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.