Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4614622
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:43:33+00:00 2026-05-22T01:43:33+00:00

I have a SQLite table with a Balance field that will be used as

  • 0

I have a SQLite table with a Balance field that will be used as a running total. I have a trigger defined that calculates the Balance on insert of new records, but it doesn’t fire on the first insert, so the Balance in the first record is zero. All following records calculate correctly.

Current trigger definition:

CREATE TRIGGER [UpdateBalance_Insert] AFTER INSERT ON [Transaction] FOR EACH ROW BEGIN 
REPLACE INTO [Transaction] 
SELECT  t1.[ID], 
        t1.[Date], 
        t1.[Transaction], 
        t1.[Debit], 
        t1.[Credit], 
        (   SELECT  SUM( t2.[Credit] ) - SUM( t2.[Debit] ) + new.[Credit] - new.[Debit] 
            FROM    [Transaction] AS t2 
            WHERE   t2.[Date] < t1.[Date] OR ( 
                    t2.[Date] = t1.[Date] AND t2.[ID] < t1.[ID] ) 
        ) AS [Balance]
FROM    [Transaction] AS t1 
WHERE   [ID] = new.[ID]; 

UPDATE  [Transaction] 
SET     [Balance] = [Balance] + new.[Credit] - new.[Debit] 
WHERE   [Date] > new.[Date]; 
END

Edit: The nature of my question changed between typing the title and typing the description. Above is my original trigger. My original question was whether a separate trigger could be created to handle the first insert only, but now I wonder if the existing trigger could be modified to perform the needed functionality.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T01:43:34+00:00Added an answer on May 22, 2026 at 1:43 am

    I’d try to check if the table is empty first, and if it is, hard-code a balance. If not, i’d compute it using your algorithm.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an sqlite table that I'd like to add a new field to.
I have a sqlite table that has amount field with NUMERIC(10,5) value(I know data
I have an SQLite table that contains a BLOB I need to do a
I have a boolean (BOOL) type field in the SQLite table. In the SubSonic
I have a very large CSV file that I imported into a sqlite table.
How to insert new row using PHP in SQLITE in table /var/drk.db and to
I have a sqlite table that was originally created with: PRIMARY KEY (`column`); I
I have a Sqlite database that has a table consisting of company information (Companies)
I have a database table with a field that has values such as AAAA
I have an SQLite table that must remain unchanged until a specific point. Any

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.