📜  sql 删除重复项 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:15.809000             🧑  作者: Mango

代码示例3
Distinct: helps to remove all the duplicate
records when retrieving the records from a table.

SELECT DISTINCT FIRST_NAME FROM VISITORS;