A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.
-
Updated
Sep 3, 2020 - Python
MySQL is an open source relational database management system. Based in Structured Query Language (SQL), MySQL can run on most platforms and is mainly used for web-based applications. It is written in C and C++.
Created by David Axmark, Allan Larsson and Michael "Monty" Widenius
Released May 23, 1995
Example of usage:
users = await User.filter(first_name__ilike="c%r")I know this can be done with startswith and endswith, but there are cases where using the LIKE operator is better:
users = await User.filter(first_name__ilike="j_r%")This would be used to match Jeremy, Jorge, Jordan...