Best unofficial Apache Server developers community |
|
I have the following MySQL query specified within a JSP. I want to figure out an equivelant query that I can run properly against Oracle Database as I am migrating my project from MySQL to Oracle DB. Primary key of this "clips" table is "clip_id" which is actually not included in this query. In Oracle I created a sequence and trigger on "clip_id" because its value is supposed to auto-increment.
Any comment or advice is appreciated.Thanks.
posted via StackOverflow
|
|
 
|
To make my comment an answer: Use the RETURNING INTO clause, see here. |