Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #11

Merged
merged 1 commit into from
Jul 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,11 @@
**, [SALARY]**
from Employees;
5. Comma seperator should be before the start of new column name.
For. Eg.
```sql
SELECT [ID]
For. Eg. SELECT [ID]
**,** [NAME]
**,** [SALARY]
from Employees;
```
6. Query should be optimize for better performance.
6.Query should be optimize for better performance.
7. Proper Indentation should be followed while writing the query.
8. Define Aliases to change column name to your convenient name. Used to shorten Column Names of Coulmns having large names.
9. **'AS'** keyword is used to define aliases.
Expand All @@ -42,14 +39,13 @@
19. Entity name should be plural.
20. Primary key should be NOT NULL AND AUTO_INCREMENT.
21. While inserting values in table
1. Don't insert the value of auto incremented columun.
2. Inserting values should be in same case it means data should be consistant.
22 .While creating table obey all the rules of Normal Forms.
23 .Explicitly specify the order of column Like ASC or DESC.
24 .View name should start with 'V'
Ex.[vEmployee]
- Don't insert the value of auto incremented columun.
- Inserting values should be in same case it means data should be consistant.
22. While creating table obey all the rules of Normal Forms.
23. Explicitly specify the order of column Like ASC or DESC.
24. View name should start with 'V'.
Ex. [vEmployee]

25. Schema should be required for tables.
26. All predefine clauses name sholud be in capital letters.
Ex.FROM,SELECT etc.

Ex. FROM,SELECT etc.