InterviewSolution
Saved Bookmarks
| 1. |
What Is Parsing? |
|
Answer» Parsing primarily consists of checking the SYNTAX and semantics of the SQL statements. The end PRODUCT of the parse stage of query compilation is the creation of a parse TREE, which represents the query structure. The parse tree is then sent to the logical query PLAN GENERATION stage. Parsing primarily consists of checking the syntax and semantics of the SQL statements. The end product of the parse stage of query compilation is the creation of a parse tree, which represents the query structure. The parse tree is then sent to the logical query plan generation stage. |
|