filmov
tv
Practice Activity - Creating a rolling total over the last 3 months in SQL Server
Показать описание
If you are in March, how can you total January, February and March's figures in SQL Server?
My SQL Server Udemy courses are:
----
You can create a running total using partition functions. However, what if you only wanted the running total to be over the last 3 months?
There are many ways of doing this. In this video, we will look at using a correlated query, and using a self-join.
We will also be looking at the DATEDIFF and DATEFROMPARTS functions.
Here is the code that we will be using to create the tables, if you want to use this as a Practice Activity:
DROP TABLE IF EXISTS Invoices;
CREATE TABLE Invoices
(InvoiceDate date,
InvoiceAmount int);
INSERT INTO Invoices
VALUES
('2022-12-01', 1), ('2023-02-01', 1), ('2023-02-15', 1),
('2023-03-01', 3), ('2023-04-01', 2), ('2023-04-15', 2),
('2023-05-01', 5), ('2023-06-01', 3), ('2023-06-15', 3), ('2023-08-01', 8);
My SQL Server Udemy courses are:
----
You can create a running total using partition functions. However, what if you only wanted the running total to be over the last 3 months?
There are many ways of doing this. In this video, we will look at using a correlated query, and using a self-join.
We will also be looking at the DATEDIFF and DATEFROMPARTS functions.
Here is the code that we will be using to create the tables, if you want to use this as a Practice Activity:
DROP TABLE IF EXISTS Invoices;
CREATE TABLE Invoices
(InvoiceDate date,
InvoiceAmount int);
INSERT INTO Invoices
VALUES
('2022-12-01', 1), ('2023-02-01', 1), ('2023-02-15', 1),
('2023-03-01', 3), ('2023-04-01', 2), ('2023-04-15', 2),
('2023-05-01', 5), ('2023-06-01', 3), ('2023-06-15', 3), ('2023-08-01', 8);
Practice Activity - Creating a rolling total over the last 3 months in SQL Server
Learning Activities vs Practice Activities
Practice Activity: Create a 3 month running total
SQL Server Practice Activity - Which orders have got both hot and cold items? Pivot and Subqueries
A great grammar practice activity for second conditionals
Make A Pickleball Practice Activity Game! Pickleball Tetherball #pickleball #physicaleducation
How to create a group practice activity
DIY Shoe tying practice activity for the kids #shorts #fun #school
MUST WATCH! Your Legs Fade First! Seniors MUST Eat 3 Foods to Keep Them Strong!
Activity signature handwriting practice #activity #signature #shortsfeed #handwriting #viral #shorts
Practice blends with this easy to create activity
Teaching ELA: The Vocabulary Practice Interactive Activity & Assignment!
How to Make Workbooks and Practice Activities in Whizzimo
Making a Ten Activity & Guided Practice
Observable Practice Activity Assessment System
Practice Activity
School Prep! Counting 1-10 Practice Activity! Easy to create
BPC110 Practice Activity 2- Setting Up Your File Structure
SCISSOR CUTTING PRACTICE ACTIVITY FOR KIDS
Name Practice Activity With Cloth Pegs And Stickers #namepractice #shorts #youtubeshorts
Alphabet Activities That Make It Easy for Kids To Practice Their ABCs #learningthroughactivities
#Montessori Practical Life activities do not imply perfect, rather practice & progress #toddler ...
Star Paper Craft Activity | Addition & Subtraction Practice | Christmas Math
BPC110 Practice Activity 1- Saving a File
Комментарии