Skip to content
Advertisement

Using INSERT and UPSERT in SQLite trigger to update one table from another table?

I’m attempting to create a SQL database for an Auction company I work for. The issue I’m running into is creating triggers that update other inventory tables from the main inventory. I’ve tried quite a few different things, but can’t wrap my head around how to get this to work. The latest trigger I’ve attempted is as follows:

Additional info: I have my main table AllInventory that will be updated regularly and needs to separate into 2 different tables. I have a UNIQUE constraint on all tables for the UID. This trigger I have any time the new.Location matches Inventory1.Location ‘Keyword’ it inserts new row into Inventory1 no problem, but if I update something in AllInventory that is already in Inventory1 with a UID it doesn’t update the information I put in.

Advertisement

Answer

I figured it out and was able to solve the above problem with:

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