Update README.md

This commit is contained in:
GowthamRaj K
2021-07-27 19:32:26 +05:30
committed by GitHub
parent 77a0e2b61f
commit d3a964737c
+4
View File
@@ -247,3 +247,7 @@ Following are some of the most commonly used constraints available in SQL
### SQL SELECT Statement ### SQL SELECT Statement
SELECT column1, column2....columnN SELECT column1, column2....columnN
FROM table_name; FROM table_name;
### SQL DISTINCT Clause
SELECT DISTINCT column1, column2....columnN
FROM table_name;