Hello SQLers,
Working Code:
create table Rules(
RuleID int identity(1,1) not null,
UserID int not null,
AccountIDSource int,
AccountIDTarget int,
ActionID int,
ActionValue money,
NextActionDate datetime,
Foreign Key(UserID) References Users(UserID) on delete cascade,
Foreign...