I am developing a simple school database system,how can i arrange my tables better to be able to include monthly fees in my transaction form?I mean please give me a better table structure
2. [Balance] shouldn't be a field in a table, instead it should be calculated. You shouldn't store caclulated values, instead you calculate them.
3. I don't think you relationship among tblFees, TransDetails, FeeMaster is correct. You need all your amounts (credits and debits) in one field in one table. That way you can easily calculate your balance.