Generate Series in Redshift and MySQL_MySQL
A lot of the charts and tables made inPeriscopeare time series, and the queries behind them are often easier when you can join and aggregate against a list of dates. Not having a complete list of dates causes gaps in the results, changing them in a misleading way:
Postgres has a great function for generating a list of dates (seeUse generate_series to get continuous results), and making a list of the last 60 days withgenerate_series
is easy:
<code>select now()::date - generate_series(0, 59)</code>
Accomplishing the same thing in Redshift and MySQL requires a little more work.
Date Series from a Numbers Table
The simplest alternative togenerate_series
is to create a table containing a continuous list of numbers, starting at 0, and select from that table. (If you have a table with a sequentialid
column and never delete rows from it, you can just select theid
column from that table instead of creating a new numbers table).
<code>select n from numbers;</code>
Returns this list of rows: 0, 1, 2, 3...
Now that you have a numbers table, convert each number into a date:
Redshift:
<code>select (getdate()::date - n)::date from numbers</code>
MySQL:
<code>select date_sub(date(now()), interval n day) from numbers</code>
A numbers table is more convenient than a dates table since it never needs to be refreshed with new dates.
Redshift: Date Series using Window Functions
If you don't have the option to create a numbers table, you can build one on the fly using a window function. All you need is a table that has at least as many rows as the number of dates desired. Using a window function, number the rows in any table to get a list of numbers, and then convert that to a list of dates:
<code>select row_number() over (order by true) as nfrom users limit 60</code>
And now creating the list of dates directly:
<code>select (getdate()::date - row_number() over (order by true))::date as nfrom users limit 60</code>
MySQL: Date Series using Variables
With variables in MySQL, we can generate a numbers table by treating a select statement as a for loop:
<code>set @n:=-1;select (select @n:= @n+1) nfrom users limit 60</code>
And now creating the list of dates directly:
<code>set @n:=date(now() + interval 1 day);select (select @n:= @n - interval 1 day) nfrom users limit 60</code>
Now that we've made a list of dates, aggregating and joining data from other tables for time series charts is a breeze!

ホットAIツール

Undresser.AI Undress
リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事

ホットツール

メモ帳++7.3.1
使いやすく無料のコードエディター

SublimeText3 中国語版
中国語版、とても使いやすい

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境

ドリームウィーバー CS6
ビジュアル Web 開発ツール

SublimeText3 Mac版
神レベルのコード編集ソフト(SublimeText3)

ホットトピック











この記事では、DockerのMySQLメモリ使用量を最適化することを調査します。 監視手法(Docker統計、パフォーマンススキーマ、外部ツール)および構成戦略について説明します。 これらには、Dockerメモリの制限、スワッピング、およびcgroupsが含まれます

この記事では、MySQLの「共有ライブラリを開くことができない」エラーについて説明します。 この問題は、必要な共有ライブラリ(.so/.dllファイル)を見つけることができないMySQLの障害に起因しています。ソリューションには、システムのパッケージMを介してライブラリのインストールを確認することが含まれます。

この記事では、MySQLのAlter Tableステートメントを使用して、列の追加/ドロップ、テーブル/列の名前の変更、列データ型の変更など、テーブルを変更することについて説明します。

この記事では、PHPMyAdminの有無にかかわらず、LinuxにMySQLを直接インストールするのとPodmanコンテナを使用します。 それは、各方法のインストール手順を詳述し、孤立、携帯性、再現性におけるポッドマンの利点を強調しますが、

この記事では、自己完結型のサーバーレスリレーショナルデータベースであるSQLiteの包括的な概要を説明します。 SQLiteの利点(シンプルさ、移植性、使いやすさ)と短所(同時性の制限、スケーラビリティの課題)を詳しく説明しています。 c

記事では、証明書の生成と検証を含むMySQL用のSSL/TLS暗号化の構成について説明します。主な問題は、セルフ署名証明書のセキュリティへの影響を使用することです。[文字カウント:159]

このガイドは、HomeBrewを使用してMacOSに複数のMySQLバージョンをインストールおよび管理することを示しています。 Homebrewを使用して設置を分離し、紛争を防ぐことを強調しています。 この記事では、インストール、開始/停止サービス、および最高のPRAを詳述しています

記事では、MySQLワークベンチやPHPMyAdminなどの人気のあるMySQL GUIツールについて説明し、初心者と上級ユーザーの機能と適合性を比較します。[159文字]
