A powerful SQL Query Checker & Formatter that helps detect spelling mistakes, syntax errors, and formatting issues in SQL queries. π
β
Real-time spell checking for SQL keywords
β
SQL syntax validation (e.g., missing semicolons, unmatched parentheses, incorrect JOIN usage)
β
Auto-formatting for cleaner and more readable SQL queries
β
CodeMirror Integration for a smooth editing experience
β
Supports MySQL syntax checking
β
Interactive error highlighting
- Enter your SQL query in the editor.
- Errors will be highlighted in real-time.
- Click Format SQL to clean up your query.
- Click Clear Editor to reset the input.
SELECT name, email FROM users WHERE id = 1;β No issues found!
SELCT name, email FRM users WHER id = 1β Misspelled keywords: SELCT β SELECT, FRM β FROM, WHER β WHERE
β Missing semicolon at the end of the query
- JavaScript (CodeMirror for syntax highlighting)
- HTML & CSS (Frontend UI)
- MySQL Query Checking