
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Difference Between Static SQL and Dynamic SQL
Static SQL
Static SQL refers to those SQL statements which are fixed and can be hard coded into the application. As static sqls are fixed queries, these statements can be analyzed and optimized and do not require any specific handling for security purposes.
Dynamic SQL
Dynamic SQL refers to those SQL statements which are generated dynamically based on user's input and run in the application. Dynamic Sqls helps to develop general and flexible applications. Dynamic SQL may need more permissions and security handling and a malicious user can create dangerous code as well.
Following are some of the important differences between Static Routing and Dynamic Routing.
Sr. No. | Key | Static SQL | Dynamic SQL |
---|---|---|---|
1 | Database Access | In Static SQL, databse access procedure is predetermined in the statement. | In Dynamic SQL, how a database will be accessed, can be determined only at run time. |
2 | Efficiency | Static SQL statements are more faster and efficient. | Dynamic SQL statements are less efficient. |
3 | Compilation | Static SQL statements are compiled at compile time. | Dynamic SQL statements are compiled at run time. |
4 | Application Plan | Application Plan parsing, validation, optimization and generation are compile time activities. | Application Plan parsing, validation, optimization and generation are run time activities. |
5 | Use Cases | Static SQL is used in case of uniformly distributed data. | Dynamic SQL is used in case of non-uniformly distributed data. |
6 | Dynamic Statements | Statements like EXECUTE IMMEDIATE, EXECUTE, PREPARE are not used. | Statements like EXECUTE IMMEDIATE, EXECUTE, PREPARE are used |
7 | Flexibility | Static SQL is less flexible. | Dynamic SQL is highly flexible. |
Advertisements