📜  在 sql server 中唯一 - SQL 代码示例

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

代码示例3
DISTINCT
- select distinct * from employees; ==> retrieves any row if it has at
least a single unique column.
- select distinct first_name from employees; ==> retrieves unique names
from table. (removes duplicates)
- select distinct count(*) from employees; retrieve number of unique rows
if any row has at least a single unique data.