我这个触发器错在哪里啊
--------------------------------------------
create trigger syz_basicinfo_propertyinfo_ON_insert AFTER INSERT on u_reginfo
begin
insert into u_basicinfo.UId values (new.UId);
insert into u_propertyinfo VALUES (new.UId);
end我想在向 u_reginfo 表里插入数据的时间
同时向 u_basicinfo 表和 u_propertyinfo 表中插入一条数据