Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 677 Bytes

File metadata and controls

19 lines (15 loc) · 677 Bytes

Mini-Sql-Engine

Description

Mini Sql Engine is one which runs a subset of SQL Queries using command line interface.

SQL Query Syntax

  1. select * from
  2. select aggregate(column) from
  3. select from [ colnames = seperated only by , and no extra spaces]
  4. select distinct(colName) from
  5. select distinct from
  6. select from where [ seperated by space Ex: a = 1 and b = 2]
  7. select * from
  8. select from
  9. select from where

How to run

python code.py "SQL Query"