标签:
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均适用)
SQL Server中Delete语句表名不能用别名
原文地址:http://www.cnblogs.com/toSeeMyDream/p/5063068.html