0
votes
Oracle - dynamic column name in select statement
You will need something similar to this:
select 'select ' || CASE WHEN YEAR<1950 THEN 'OLDYEAR' ELSE 'NEWYEAR' END || ' FROM TABLE 1' from TABLE_WITH_DATA
…
1
vote
Using Semicolons in Oracle SQL Statements
I am comming from 5+ years MS SQL Experience and 4+ years of Oracle Development.
I know you will hate lot ORACLE features specially in SQL ;) but take it easy ORACLE is really powerfull DBMS. Even …
-1
votes
Data Integration between Oracle and External Application ?
If the data model is simply enough (HR stuff should be) then I would go with option to connect to Oracle Schema and consume the data.
…
