1. New IFS interface (jfs.ifs, udf.ifs for example)
2. Howto embed select statements into other select statements
Hi,
I want to calculate the fraction of two counts and I have created the
following select statement:
select
field1,
field2,
(select table1.co/table2.co
from (select count(1) co, id from t_table1 where seal>=1000 group
by id) table1,
(select count(1) co, id from t_table2 group by id) table2
where table1.id=j.id and table2.id=j.id),
field3
from t_table3 j
This works as long as there are corresponding entries in t_table1 and
t_table2, otherwise the fraction becomes null, which might make sense
when there is nothing in t_table2 but not when t_table1 has no
matching entries.
Instead I have tried:
select
field1,
field2,
(select table1.co/table2.co
from (select count(1) co, id from t_table1 where seal>=1000 and
id=j.id) table1,
(select count(1) co, id from t_table2 where id=j.id) table2),
field3
from t_table3 j
But then the database (Oracle 10) complains that it can not find j.id.
How can I write this select correctly?
Best regards
Niels Dybdahl
3. Use results from a select statement in a follow-up select statement in a SP
4. Need help w/ SELECT statement within a SELECT statement
5. Correct syntax for SELECT statement within a SELECT statement.
6. select statement into if statement in an event code (syntax error
7. Loop though select statement
8. Loop through SELECT Statement
9. select and update statements in a while loop is not working proper
10. Does a cursor re-execute the select statement everytime it loops?
11. How to use do while or any loop in select statement ?
13. changing database for select statement inside a while loop
14. Loop an SQL SELECT statement
15. reading field from select statement into variable (loop)