SQL Server中Delete语句表名不能用别名

时间:2023-02-03 22:32:02

delete from TABLEA A where A.FIELD1=10        (ORACLE适用)
delete TABLEA from TABLEA A where A.FIELD1=10 (SQLSERVER适用)
delete  from TABLEA where TABLEA.FIELD1=10    (Ora/SQL均适用)