Ask a Question related to Informix, Design and Development.
-
Fred #1
Support of sql-92 select statement
We've been given the SQL source code for an application written to
sql-92 standards. Some of the syntax looks like this:
select
c_count,
count(*) as custdist
from
(
select
c_custkey,
count(o_orderkey)
from
customer left outer join orders on
c_custkey = o_custkey
and o_comment not like
'%express%deposits%'
group by
c_custkey
) as c_orders (c_custkey, c_count)
group by
c_count
order by
custdist desc,
c_count desc;
Correct me if I'm wrong, but I don't see that IDS 9.x supports this?
Fred Prose
Arizona Supreme Court
Fred Guest
-
Select-And-Update in one statement?
On my site I often do SELECT counter from counters where id = 10 UPDATE counter set counter = counter + 1 Can I somehow merge them into one... -
SP with Select statement
Hi, I'm trying to select fileds that are in the results of a SP. So I have the table "tblItem" itemID int Identity Key, itemName varchar... -
help with SELECT statement
"Aaron" <abroadway@ameritrust.com> wrote in message news:05a601c365df$b31a8d40$a401280a@phx.gbl... "SUM(ABS(action_date>= {" & start_date2 & "}... -
combine two select statement
Hi guys, I have two select statement, each will return one cell select1: Select2 a b If I use Union, I will... -
SELECT statement
I have 3 tables: table countryPrice: productID countryId price 1 Italy 90 1 England ... -
Richard #2
Re: Support of sql-92 select statement
"Fred Prose" <com> wrote in message
news:google.com...
FROM TABLE(MULTISET(SELECT ...))
or something like that.
You have to tell Informix that a) a select statement is a bag,
and b) you can make a table from it.
Richard Guest



Reply With Quote

