SQL知识点自我学习

包括一些基本用法

Posted by Haiming on September 7, 2020

Learn SQL and related things. Today I went through one online exam about the SQL, and here is the notes for me to do some summarisation.

SELECT

One thing need to learn is select different values:

  1. Select all the different values from the Country column in the Customers table.

    select distinct Country from CUSTOMERS