这个是我的代码 提示 FROM 周围有错误 求解 谢谢了
CREATE TRIGGER TRI_NAME_DEL  ON tblStudent 
FOR  DELETE 
AS
DECLARE @towcount int
SET @towcount= COUNT(*) from DELETED 
if @towcount>2
ROLLBACK  TRANSACTION
print 'you cannot delete more than one student at a time!'
END