Skip to content

Tung M Phung's Blog

  • Home
  • About me

Tag: SQL

Software Development1 Comment

Database questions & answers

October 20, 2021August 18, 2022 Tung.M.Phung

A list of essential Database questions and answers to refresh your knowledge in this field. Continue reading Database questions & answers

Database, Machine Learning - Data MiningLeave a comment

SQL – Postgresql Indexing

April 5, 2020July 31, 2020 Tung.M.Phung

This article attempts to give a comprehensive view of Index in Postgresql. Continue reading SQL – Postgresql Indexing

Database, Machine Learning - Data MiningLeave a comment

SQL – create and alter tables

March 7, 2020July 31, 2020 Tung.M.Phung

In this blog post, we introduce the creation and alteration of tables along with auxiliary information like data types and constraints. Continue reading SQL – create and alter tables

Database, Machine Learning - Data MiningLeave a comment

SQL – window functions

March 4, 2020July 31, 2020 Tung.M.Phung

A window function performs the calculation of each row over a set of rows (a group / a partition / a window of rows) that they belong to. Continue reading SQL – window functions

Database, Machine Learning - Data MiningLeave a comment

SQL – list of Postgresql functions

March 3, 2020July 31, 2020 Tung.M.Phung

This article summarize all functions in Postgresql, from numeric, string, datetime to other functions. Continue reading SQL – list of Postgresql functions

Database, Machine Learning - Data MiningLeave a comment

SQL – combining data (UNION, JOIN, etc.)

March 1, 2020July 31, 2020 Tung.M.Phung

In this blog post, we make it through the 2 means of combining data: row-wise (UNION, INTERSECT, etc.) and column-wise (JOIN, etc.) Continue reading SQL – combining data (UNION, JOIN, etc.)

Database, Machine Learning - Data MiningLeave a comment

SQL – aggregate functions

February 26, 2020July 31, 2020 Tung.M.Phung

SQL aggregation functions in Postgresql, including general-purpose, concatenative, statistics, ordered-sets, and ranking aggregation. Continue reading SQL – aggregate functions

Database, Machine Learning - Data MiningLeave a comment

SQL – an introduction to basic SELECT queries

February 24, 2020July 31, 2020 Tung.M.Phung

An introduction to SQL queries, including SELECT, FROM, WHERE, ORDER BY, LIMIT, alias (AS), DISTINCT, equal (=), not equal (!= or <>) Continue reading SQL – an introduction to basic SELECT queries