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 8710283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T04:35:18+00:00 2026-06-13T04:35:18+00:00

I could use some help (preferably a dummy’s guide) to updating the following table:

  • 0

I could use some help (preferably a dummy’s guide) to updating the following table:

CREATE TABLE `SYMBOL` (
  `day` date NOT NULL,
  `open` decimal(8,3) DEFAULT NULL,
  `high` decimal(8,3) DEFAULT NULL,
  `low` decimal(8,3) DEFAULT NULL,
  `close` decimal(8,3) DEFAULT NULL,
  `volume` bigint(20) DEFAULT NULL,
  `adj_close` decimal(8,3) DEFAULT NULL,
  `moving_average` decimal(8,3) DEFAULT NULL,
  PRIMARY KEY (`day`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

The moving_average column is empty now. All other columns are populated (for the time being, I’m ok with this being “static”, it does not need to update as I add rows – though if this is easy to do, that would be great). It is a 20-day moving average that I hope to calculate.

I have tried by performing the steps here to the best of my ability:

How do I calculate a moving average using MySQL?

My query is this:

SELECT
     `close`,
     (
     SELECT
          AVG(`close`) AS moving_average
     FROM
          SYMBOL T2
     WHERE
          (
               SELECT
                    COUNT(*)
               FROM
                    SYMBOL T3
               WHERE
                    `day` BETWEEN T2.day AND T1.day
          ) BETWEEN 1 AND 20
     )
FROM
     SYMBOL T1

Have I modified the query correctly? What needs to be done to write the results to the moving_average column?

When I run the above, nothing happens (it says its running, no errors, after letting it run for a long time I just stopped it). The column moving_average still has NULL values.

I also looked at this answer:
How to calculated multiple moving average in MySQL

However, I’m unsure what I need to change to the reply for my table.

Any help is appreciated.

  • 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-06-13T04:35:20+00:00Added an answer on June 13, 2026 at 4:35 am

    There are two ways of doing this:

    1. Create an update query that updates every row in your table
    2. Create a stored procedure that does the job

    I personally prefer option 2:

    delimiter $$
    create procedure movingAvg()
    begin
        declare mv double;
        declare t date;
        declare done int default false;
        declare cur_t cursor for
             select distinct day from symbol
             order by day;
        declare cur_mv cursor for
             select avg(close) from symbol
             where day between date_add(t, interval -19 day) and t;
             -- Here you define the interval of your MV.
             -- If you want a 20-day MV, then the interval is between t-19 and t
        declare continue handler for not found set done=true;
    
        open cur_t;
        loop_day: loop
            fetch cur_t into t;
            if not done then
                open cur_mv;
                fetch cur_mv into mv;
                close cur_mv;
                update SYMBOL
                    set moving_average = mv
                    where day=t;
            else
                leave loop_day;
            end if;
        end loop loop_day;
        close cur_t;
    end;
    delimiter ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Firebird 2.1. I could use some help creating the following query or
I could really use some help optimizing a table on my website that is
I could use some help with expression conversion. I have a method on a
I am really new to Ruby and could use some help with a program.
i have an issue i could use some help with, i have python list
I'm new to SQL and could use some help in creating a database schema
I'm just starting to learn T-SQL and could use some help in understanding what's
I am a absolute PHP n00b, so i could use some help with a
I could really use some help here. I just created a new bare repo
I'm struggling with the following scenario and could use some different perspectives to shed

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.