We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5953417 commit 506b940Copy full SHA for 506b940
sql.md
@@ -2,7 +2,7 @@
2
title: SQL Cheatsheet
3
description: Contains syntaxes & examples to help new comers get comfortable with using SQL.
4
created: 2022-10-01
5
-updated: 2022-10-01
+updated: 2022-10-09
6
---
7
8
## Creation & Insertion
@@ -68,6 +68,14 @@ This can also be achieved by :
68
```SQL
69
SELECT ALL <column name> FROM <table name>
70
```
71
+To get used to specify the number of records in return:
72
+
73
+```SQL
74
+SELECT <column_name>
75
+FROM <table name>
76
+WHERE condition
77
+LIMIT number;
78
+```
79
80
To get all unique values from a column :
81
0 commit comments