Skip to content

Commit 488cee8

Browse files
Merge pull request #6 from Prerna-Chachare/patch-2
Update README.md
2 parents 9a1e2d5 + bde30de commit 488cee8

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

README.md

+18-10
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,21 @@
22

33
## Coding Standreds
44
1. Use [ ] brackets to specify coloumn name in select statement.
5-
6-
7-
8-
9-
## Shortcurs and Cheatsheet
10-
11-
12-
13-
14-
5+
2. Do not use SELECT * as it affects significant performance.
6+
For. Eg. SELECT **[ID]**
7+
**, [NAME]**
8+
from Employees;
9+
3. Select query should have SELECT keyword in Capital Letters.
10+
For. Eg. **SELECT** [ID]
11+
, [NAME]
12+
from Employees;
13+
4. Specify column name on seperate lines.
14+
For. Eg. SELECT [ID]
15+
**, [NAME]**
16+
**, [SALARY]**
17+
from Employees;
18+
5. Comma seperator should be before the start of new column name.
19+
For. Eg. SELECT [ID]
20+
**,** [NAME]
21+
**,** [SALARY]
22+
from Employees;

0 commit comments

Comments
 (0)