I'm a newbie when it comes to SQL Server and I have a problem creating a trigger.
I have a table called Concert
and I have to create a trigger (I think?) that doesn't allow adding concerts to the database if there are already shows planned on the date that I am choosing, in the concert hall that I am choosing.
Something like
- if hall and date combination already exists in table => trigger ('not allowed')
This is my (very bad attempt):
CREATE TRIGGER unavailable_show
ON Concert
FOR INSERT
AS
BEGIN
IF EXISTS (SELECT Date, HallID FROM INSERTED)
ROLLBACK TRANSACTION
END
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…