Microsoft T-SQL to Oracle SQL translation

后端 未结 12 1279
醉酒成梦
醉酒成梦 2020-12-01 05:28

I\'ve worked with T-SQL for years but I\'ve just moved to an organisation that is going to require writing some Oracle stuff, probably just simple CRUD operations at least u

12条回答
  •  栀梦
    栀梦 (楼主)
    2020-12-01 06:25

    I have to things to mention.

    1) When I worked on Oracle 8, you could not do "Select @Result", you had to instead use the dummy table as follows "Select @Result from dual". Not sure if that ridiculousness still exists.

    2) In the Oracle world they seem to love cursors and you better read up on them, they use them all the time AFAICS.

    Good luck and enjoy,

    it is not that different to MS SQL. Thankfully, I do not have to work with it anymore and I am back in the warm comfort of MS tools.

提交回复
热议问题