Transaction Table

J

JS

My business has many deposits and withdrawls to post each
month. Should I use one transaction table, or should I
use a deposit table and a withdrawl table with a jumper
table connecting the two?
 
A

Armen Stein

Works either way, but the one transaction table will be more efficient.

I agree with Allen - you can just have a Transaction table that holds
all kinds of transactions, positive and negative.

If you do go with two tables, you can use a UNION ALL query to mix the
two types together. This will be handy when you want to sort them by
date, for example.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top