Skip to content
Advertisement

Trigger to check if the combination of two field exist

I want to create a trigger which will check if my showtime with Cinema Hall Id exist or not. This will prevent me from booking one Cinema hall at two same Showtimes. Secondly in this trigger I am also checking if the showtime I am assigning to movie lies in movie release and last date range or not. But I don’t know why none of the statement is working.

Advertisement

Answer

I think this is what you are looking for. The changes/improvements/best practices are:

  • Uses set-based logic, which you should always aim to do in a relational database.
  • Uses Inserted as a table rather than a single row
  • Semi-colon line terminators
  • set nocount on
  • Uses throw
  • Uses [] instead of ""
  • Fixed “in range” logic and detection of duplicate logic

Note: I highly recommend reading Using Inserted and Deleted as it explains very clearly how to write triggers.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement