/mini-mysql

Simple python implementation for a subset of mysql queries.

Primary LanguageHTML

Mini MySQL

The project implements a subset of SQL functionalities according to the following types of queries:

  • Select, Delete with table.column or column option and where condition
  • Where with any number of conditions
  • Select with column projection and *(wildcard)
  • SUM, MAX, MIN, AVG, DISTINCT functions
  • Create, Truncate, Drop table

Also incorporated Error Handling to an extent.