Hint (SQL)
Appearance
In various SQL implementations, a hint is an addition to the SQL standard that instructs the database engine on how to execute the query. For example, a hint may tell the engine to use or not to use an index (even if the query optimizer would decide otherwise).
example:
select /*+ index(idx_ename) */ ename from emp where ename='pawan kalyan'
Implementation
Different database engines use different approaches in implementing hints.
- MySQL uses its own extension to the SQL standard, where a table name may be followed by USE INDEX, FORCE INDEX or IGNORE INDEX keywords.[1]
- Oracle implements hints by using specially-crafted comments in the query that begin with a + symbol, thus not affecting SQL compatibility.[2]
- Postgres Plus® Advanced Server (a proprietary version of PostgreSQL from EnterpriseDB) offers hints compatible with those of Oracle.[3][4]
- MSSQL Microsoft SQL Server - a good study guide on this topic could be found here : [5]
See also
References
- ^ MySQL 5.5 Reference Manual: 12.2.9.3 Index Hint Syntax
- ^ Mike Ault: Oracle SQL Hints Tuning
- ^ Postgres Plus Advanced Server Performance and Scalability Guide: Query Optimization Hints
- ^ Postgres Plus Advanced Server Oracle Compatibility Developer's Guide: Optimizer Hints
- ^ a good study guide - [1]