Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. davidbronsky

    Trigger problem

    this is the answer: CREATE TRIGGER VEHICLE_TABLE_IUD ON VEHICLE_TABLE AFTER INSERT,UPDATE,DELETE AS BEGIN DECLARE @Vehicle varchar(50) IF EXISTS (SELECT * FROM INSERTED) BEGIN SELECT @Vehicle= VEHICLE_TYPE FROM INSERTED IF @Vehicle='CAR'...
  2. davidbronsky

    Trigger problem

    I have question about TRIGGERS. I have (4 example) VEHICLE_TABLE with VEHICLE_TYPE column and CAR_TABLE and TRUCK_TABLE also. I need TRIGGER for INSERT/UPDATE/DELETE who well read value of VEHICLE_TYPE column in VEHICLE_TABLE and if value of VEHICLE_TYPE is CAR he will execute...

Part and Inventory Search

Back
Top