I have this query which runs on MsSQL:
select BL.ID from O_USERS_BATCH
as UB join O_BATCH_LOCK as BL on UB.INSTANCE_ID = BL.ID order by BL.ID
How do I convert it to work with Oracle data base type?
I have this query which runs on MsSQL:
select BL.ID from O_USERS_BATCH
as UB join O_BATCH_LOCK as BL on UB.INSTANCE_ID = BL.ID order by BL.ID
How do I convert it to work with Oracle data base type?
Copyright © 2021 Jogjafile Inc.
The only change is to drop the
as:Oracle doesn't support
asfor table aliases.