- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Select Statements
dhargaurav
Engager
06-17-2013
10:29 AM
I want to run 2 select statements in one search. something like
select * from my_table;
select * from your_table;
When I use the ; it gives me an error
A database error occurred: ORA-00911: invalid character
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ziegfried
Influencer
06-17-2013
11:11 AM
That's not possible. dbquery can only run a single SQL statement at a time, not a SQL-script. As an alternative you can form a union:
select * from my_table union all select * from your_table
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ziegfried
Influencer
06-17-2013
03:15 PM
What result would you expect?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
dhargaurav
Engager
06-17-2013
01:40 PM
Thanks for the quick response. the above works when I union all the same table but how about different tables.
select ship_via, ship_via_desc from ship_via where ship_via in ('F150','F750')
union all
select ship_via, count(ship_via)
from carton_hdr where carton_nbr in (SELECT rpt_parm from RPT_REQST_Q
WHERE STAT_CODE = 93 AND CREATE_DATE_TIME > SYSDATE - 1) group by ship_via
