Popular Tutorials
HTML
View allJavaScript
View allPage Index
Popular Tutorials
HTML
View allJavaScript
View allPopular Exercises
Page Index
MySQL DISTINCT STATEMENT
MySQL DISTINCT clause is used to remove duplicate records from the table and fetch only the unique records. The DISTINCT clause is only used with the SELECT statement.
SELECT DISTINCT expressions FROM tables [WHERE conditions];
expressions: specify the columns or calculations that you want to retrieve.
tables: specify the name of the tables from where you retrieve records. There must be at least one table listed in the FROM clause.
WHERE conditions: It is optional. It specifies the conditions that must be met for the records to be selected.
Let's move on to usuage of from keyword in MySQL
Share this page on :
© 2022 AnalyzeCode.com All rights reserved.