Inspecting A Column Unique Distinct Values In Sql

[Solved] Inspecting A Column Unique Distinct Values In Sql | Perl - Code Explorer | yomemimo.com
Question : inspecting a column unique/distinct values in SQL

Answered by : kwams-ahortor

#The SELECT DISTINCT statement is used to return only distinct (or unique) values.
SELECT	DISTINCT(column_name)
FROM	database_name.table_name

Source : | Last Update : Mon, 05 Jul 21

Answers related to inspecting a column unique distinct values in sql

Code Explorer Popular Question For Perl