I am making a database for an accounting/sales type system similar to a car sales database and would like to make some transactions for the following real world actions.
- salesman creates new product shipped onto floor (itempk, car make, year, price).
- salesman changes price.
- salesman creates sale entry for product sold (salespk, itemforeignkey, price sold, salesman).
- salesman cancels item for removed product.
- salesman cancels sale for cancelled sale
The examples I have found online are too generic, like this is a transaction. I would like something resembling what I am trying to do to understand it.
Are there some good similar or related SQL examples I can look at to design these? Are transactions used for sales databases? Or if you have done this kind of SQL transaction before could you make an outline for how these could be made?