An interactive, premium, client-side learning platform designed for DBMS Notes and SQL Learning. Practice database schemas, SQL queries, aggregate operations, normalization, and query optimization directly in your browser. Powered by client-side SQLite (via sql.js WebAssembly) with real-time evaluation and zero server round-trips.
Live Platform: https://dbms-quest.vercel.app/
- Zero-Latency SQL Sandbox: Run and verify
SELECT,INSERT,UPDATE, andDELETEqueries instantly inside your browser. - Comprehensive DBMS Syllabus: Over 20 structured chapters spanning database theory, architecture models, and practice projects.
- Integrated Lecture Notes & Cheatsheets: Access complete PDF guides (e.g., 50 SQL Queries, Full Database Notes, SQL Cheatsheet) directly inside the application interface.
- Custom SQL Engines: Native support for regular expressions (
REGEXPfilter) matching using custom Javascript extensions for SQLite. - Premium UI/UX: Built-in adjustable split-panes, draggable query layout, terminal error output, and fully persistent lesson progress.
- Privacy First: All progress, solved states, and run history are saved directly to your browser's
localStorage(fully backwards-compatible).
The platform covers an extensive educational roadmap from fundamentals to advanced database topics:
- DBMS Basics: Data vs Information, advantages over flat-file systems.
- Three-Schema Architecture: Logical vs Physical data independence, External/View schema levels.
- Database Languages: DDL (Data Definition Language) and DML (Data Manipulation Language).
- Application Tiers: 1-Tier, 2-Tier, and 3-Tier database system architectures.
- CRUD Operations: Inserting rows (
INSERT INTO), Updating (UPDATE), and Deleting (DELETE FROM) tables. - Basic Queries: Projection (
SELECT), deduplication (DISTINCT), and selection (WHEREfiltering). - Comparison & Wildcards: SQL comparison operators (
=,!=,>,<, etc.), string patterns (LIKE '%substring%'), and regular expression patterns (REGEXP).
- Aggregate Functions:
COUNT(),SUM(),AVG(),MIN(),MAX(), and rounding values withROUND(). - Grouping & Filtering:
GROUP BYgroupings and conditional group evaluations withHAVING. - Sorting & Boundaries: Sorting outputs (
ORDER BY), limiting records (LIMIT), and handlingNULLvalues.
- Table Joins: Querying across tables using
INNER JOIN,LEFT JOIN,RIGHT JOIN, andCROSS JOIN. - Set Operations & Subqueries: Combining queries with
UNION,INTERSECT,EXCEPT, and nesting database searches. - Transactions & ACID: Atomic operations, Consistency, Isolation, and Durability controls.
- Database Normalization: Cleaning designs into First Normal Form (1NF), Second (2NF), Third (3NF), and Boyce-Codd Normal Form (BCNF).
- Database Indexing: Tuning query performance,
SCAN TABLEvsSEARCH TABLE USING INDEXexecution plans. - NoSQL Databases & Distributed Systems: Graph models, document structures, and distributed database optimization.
- Window Functions: Advanced analytical ordering using
ROW_NUMBER(),RANK(), andDENSE_RANK().
Ensure you have Node.js installed on your system.
# Clone the repository
git clone https://github.com/iamsukhe/sql-learning.git
cd sql-learning
# Install dependencies
npm install
# Start the local development server
npm run devOpen http://localhost:3000 in your browser to view the application.
# Build the production optimized Next.js bundle
npm run build
# Start the production server
npm run startThis project is licensed under the MIT License.