SQL statement of Delete and Drop Help?
- How do we select all records from the table using SQL statements? Write the syntax.
- In which situation do we prefer DELETE command to delete a table instead of using DROP command?
- Explain the four advantages and disadvantages of the De-normalization.
- Select * from table_name;
- DELETE command is used to delete some record from a table, and DROP table is used to delete whole table from the database.
- Denormalization has these disadvantages:
- Denormalization usually speeds retrieval but can slow updates. This is not a real concern in a DSS environment.
- Denormalization is always application-specific and needs to be re-evaluated if the application changes.
- Denormalization can increase the size of tables.
- In some instances, denormalization simplifies coding; in others, it makes it more complex.
0 Comments
Please add nice comments or answer ....