Difference between DELETE and DELETE FROM in SQL?

后端 未结 2 1321
梦如初夏
梦如初夏 2021-01-17 11:36

Is there one? I am researching some stored procedures, and in one place I found the following line:

DELETE BI_Appointments
WHERE VisitType != (
    SELECT T         


        
2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-17 12:10

    Hi friends there is no difference between delete and delete from in oracle database it is optional, but this is standard to write code like this DELETE FROM table [ WHERE condition ] this is sql-92 standard. always develop your code in the standard way.

提交回复
热议问题