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

  • Home
  • SEARCH
  • 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 803743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T23:48:31+00:00 2026-05-14T23:48:31+00:00

Consider the following two (hypothetical) tables Temperature * day * time * lake_name *

  • 0

Consider the following two (hypothetical) tables

Temperature

* day
* time
* lake_name
* station
* temperature_f

Temperature_summary

* day
* lake_name
* station
* count_readings_over_75f
* count_readings_below_75f

How can I write an SQLite Trigger to update the temperature_summary table on insert. I want to increment the count.

Thank You,
Jeff

  • 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-14T23:48:32+00:00Added an answer on May 14, 2026 at 11:48 pm

    This assumes you have already created the record for the day/lake_name/station before inserting temperatures on that day. Of course, you could add another trigger to do that.

    create trigger Temperature_count_insert_trigger_hi after insert on Temperature
      when new.temperature_f >= 75
      begin
        update Temperature_summary set count_readings_over_75f = count_readings_over_75f + 1
        where new.day = day and new.lake_name = lake_name and new.station = station;
      end;
    
    create trigger Temperature_count_insert_trigger_lo after insert on Temperature
      when new.temperature_f < 75
      begin
        update Temperature_summary set count_readings_below_75f = count_readings_below_75f + 1
        where new.day = day and new.lake_name = lake_name and new.station = station;
      end;
    

    You can combine these into one slightly more complex trigger

    create trigger Temperature_count_insert_trigger after insert on Temperature
      begin
        update Temperature_summary
        set count_readings_below_75f = count_readings_below_75f + (new.temperature_f < 75),
          count_readings_over_75f = count_readings_over_75f + (new.temperature_f >= 75)
        where new.day = day and new.lake_name = lake_name and new.station = station;
      end;
    

    To insure that there is a row in Temperature_summary to update (a) make a unique index on Temperature_summary’s (day, lake_name, station), or make those columns the primary key, and (b) do an insert or ignore in the trigger like so:

    create trigger Temperature_count_insert_trigger after insert on Temperature
      begin
        insert or ignore into Temperature_summary
          values (new.day, new.lake_name, new.station, 0, 0);
        update Temperature_summary
        set count_readings_below_75f = count_readings_below_75f + (new.temperature_f < 75),
          count_readings_over_75f = count_readings_over_75f + (new.temperature_f >= 75)
        where new.day = day and new.lake_name = lake_name and new.station = station;
      end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

consider the following two pieces of code: public static Time Parse(string value) { string
Consider the following two ways of writing a loop in Java to see if
Consider the following two alternatives: console.log("double"); console.log('single'); The former uses double quotes around the
Consider the following example. It consists of two header files, declaring two different namespaces:
Consider two web pages with the following in their body respectively: <body> <script> document.writeln('<textarea></textarea>')
Lets consider following two codes First: for (int i=0;i<10000000;i++) { char* tab = new
Consider the following two snippets, with braces: switch (var) { case FOO: { x
Consider the following two statements: namespace foo = bar; and namespace foo { using
Consider the following two Java files that contain a simplified version of my issue
Consider the following two Java classes: a.) class Test { void foo(Object foobar) {

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.