Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sql srv to tera

Status
Not open for further replies.

dupa12345

MIS
Jun 6, 2002
10
0
0
US
I was writing some queries on my local sql srv and am trying to translate them into tera now. the problem is with select statements inside the main query such as this -
SELECT x.cust_id,
(SELECT SUM(tot_sal_amt)
FROM table1 a
WHERE date < '1/1/2001' AND a.cust_id = x.cust_id),
(select ...)
FROM table1 x
where x.cust_id in (256,254)
GROUP BY x.cust_id
sql srv takes this ok, but tera complains about the syntax asking for something between &quot;(&quot; and &quot;select&quot;
i could use case but some of those columns are build using nested selects and i'd rather stick to select.
ideas ... greatly appreciated..thx
 
Currently, Teradata doesn't support the embedded queries at column level - only derived tables are supported. I guess, you need to rewrite your queries..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top