Process of SQL

Rajputhardikh
Apr 13, 2022

--

SQL statements are executed in 3 steps.

  1. Parse
  2. Validate
  3. Generate/Execute access plan
Process of SQL
  1. Parse: In this step, the SQL query will break into words, and then it will check for syntax errors and spelling errors.
  2. Validate: It checks queries against the system catalog. Like, table name in the statement exists in the database or not, the columns demanded by the user in the statement exist in the table or not. In short in this step the items demanded in the statement will be checked against the system.
  3. Generate/Execute access plan: Finally, the DBMS generates an access plan so that queries may be accessed quickly and easily. The access plan is a binary representation of statements in 0 and 1 format for executing database results. Then it will proceed to carry out the access strategy in a timely and efficient manner

--

--

Rajputhardikh
Rajputhardikh

Written by Rajputhardikh

0 Followers

Pursuing Master of Science in Information Technology at Arizona State University | Learning and exploring new things daily | Data Science | Data Analysis

No responses yet