diff --git a/DBMS (Database)/SQLite/readme.md b/DBMS (Database)/SQLite/readme.md
new file mode 100644
index 00000000..f95ed798
--- /dev/null
+++ b/DBMS (Database)/SQLite/readme.md
@@ -0,0 +1,517 @@
+# SQLite
+SQLite is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. It is a popular choice as an embedded database for local/client storage in application software such as web browsers. It is also used in many other applications that need a lightweight, embedded database.
+
+SQLite is ACID-compliant and implements most of the SQL standards, using a dynamically and weakly typed SQL syntax that does not guarantee domain integrity.
+One of the main benefits of using SQLite is that it is very easy to get started with. To create a new database in SQLite, you simply need to create a new file on your filesystem and connect to it using the sqlite3 API.
+
+This Section is a Curated Collection of resources for GraphQL
+
+## Table of Contents
+
+- [Roadmap](#roadmap)
+- [SQLite](#sqlite-1)
+ - [Introduction](#introduction)
+ - [Installation and Setup](#installation-and-setup)
+- [Basic Concepts](#basic-concepts)
+ - [Databases](#databases)
+ - [SQLite Tables](#sqlite-tables)
+ - [CRUD Operations](#crud-operations)
+ - [SQLite Joins](#sqlite-joins)
+- [Intermediate Concepts](#intermediate-concepts)
+- [Advanced Concepts](#advanced-concepts)
+- [Performance and Optimization](#performance-and-optimization)
+- [Integrating SQLite with Applications](#integrating-sqlite-with-applications)
+- [Practical Projects](#practical-projects)
+- [SQLite Documentation](#sqlite-documentation)
+- [Books](#sqlite-books)
+- [Language Bindings](#language-bindings)
+- [Tutorials](#tutorials)
+
+### Roadmap
+> A structured plan or guide for learning and working with SQLite, covering various topics and milestones.
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Roadmap |
+ A detailed discussion on the roadmap for SQLite, including planned features and improvements. |
+
+
+
+### SQLite
+> SQLite is a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. SQLite is the most widely deployed SQL database engine in the world. The source code for SQLite is in the public domain. This tutorial will give you a quick start with SQLite and make you comfortable with SQLite programming.
+
+
+
+
+### Introduction
+> Overview and introduction to SQLite, including its features and capabilities
+
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ What is SQLite? |
+ Overview and introduction to SQLite, including its features and use cases. |
+
+
+ SQLite Features |
+ Detailed description of the features offered by SQLite. |
+
+
+ SQL vs SQLite |
+ Comparison between SQL and SQLite, highlighting their differences and use cases. |
+
+
+ SQLite History |
+ Historical background and development of SQLite. |
+
+
+ SQLite Advantages |
+ Advantages and disadvantages of using SQLite. |
+
+
+ SQLite Commands |
+ Comprehensive list of SQLite commands with examples. |
+
+
+
+
+
+
+### Installation and Setup
+> Instructions on how to install and set up SQLite for development.
+
+
+
+
+
+### Basic Concepts
+
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Syntax |
+ Explanation of the syntax used in SQLite for writing queries and commands. |
+
+
+ SQLite Data Types |
+ Detailed description of the different data types supported by SQLite. |
+
+
+ SQLite Operators |
+ Comprehensive guide to the operators available in SQLite for use in queries and expressions. |
+
+
+ SQLite Expressions |
+ Information on how to use expressions in SQLite to perform calculations and manipulate data. |
+
+
+
+
+### Databases
+> Fundamentals of databases and how SQLite handles database operations.
+
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Create DB |
+ Guide on how to create a new SQLite database. |
+
+
+ SQLite Attach DB |
+ Instructions on how to attach an existing database to the current database connection. |
+
+
+ SQLite Detach DB |
+ Steps to detach a database from the current database connection. |
+
+
+
+
+### SQLite Tables
+> Understanding SQLite tables and their creation, modification, and deletion.
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Create Table |
+ Instructions on how to create a new table in an SQLite database. |
+
+
+ SQLite Drop Table |
+ Guide on how to drop an existing table from an SQLite database. |
+
+
+
+
+
+
+### CRUD Operations
+> Explanation of CRUD operations (Create, Read, Update, Delete) in SQLite.
+
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Insert Query |
+ Guide on how to insert data into an SQLite database using the INSERT statement. |
+
+
+ SQLite Select Query |
+ Instructions on how to retrieve data from an SQLite database using the SELECT statement. |
+
+
+ SQLite Update Query |
+ Steps to update existing data in an SQLite database using the UPDATE statement. |
+
+
+ SQLite Delete Query |
+ Guide on how to delete data from an SQLite database using the DELETE statement. |
+
+
+
+
+### SQLite Joins
+> Different types of joins and how they are implemented in SQLite.
+
+
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Joins |
+ Overview of different types of joins in SQLite. |
+
+
+ SQLite Inner Join |
+ Explanation and examples of using INNER JOIN in SQLite. |
+
+
+ SQLite Outer Join |
+ Guide to using OUTER JOIN in SQLite with examples. |
+
+
+ SQLite Cross Join |
+ Details on using CROSS JOIN in SQLite with practical examples. |
+
+
+
+
+
+
+
+### Intermediate Concepts
+> Advanced topics and techniques beyond the basics of SQLite, including transactions, functions, and advanced queries.
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ Advanced SQL Queries |
+ Detailed guide on writing advanced SQL queries in SQLite. |
+
+
+ SQLite Functions |
+ Comprehensive list of functions available in SQLite with examples. |
+
+
+ SQLite Transactions |
+ Explanation of transactions in SQLite, including how to use BEGIN, COMMIT, and ROLLBACK. |
+
+
+
+### Advanced Concepts
+> In-depth exploration of advanced features and functionalities of SQLite, such as views, triggers, and full-text search.
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite Views |
+ Guide on how to create and use views in SQLite. |
+
+
+ SQLite Triggers |
+ Explanation and examples of using triggers in SQLite. |
+
+
+ Full-Text Search (FTS) |
+ Details on implementing full-text search using FTS5 in SQLite. |
+
+
+ Virtual Tables and Modules |
+ Comprehensive guide to using virtual tables and modules in SQLite. |
+
+
+
+### Performance and Optimization
+> Strategies and techniques for optimizing performance and improving efficiency in SQLite databases.
+
+
+
+
+
+
+
+
+
+
+
+
+### Integrating SQLite with Applications
+> Integration of SQLite with various programming languages and platforms, including Python, Java, and .NET.
+
+
+
+
+
+
+
+ Resource Name |
+ Description |
+
+
+ SQLite with Python |
+ Guide on how to integrate SQLite with Python applications. |
+
+
+ SQLite with Java |
+ Instructions on integrating SQLite with Java applications. |
+
+
+ SQLite with PHP |
+ Steps to integrate SQLite with PHP applications. |
+
+
+
+
+
+
+
+### Practical Projects
+> Hands-on projects and applications built using SQLite, showcasing its real-world usage and implementation.
+
+
+
+
+
+
+
+
+
+
+### SQLite Documentation
+> Resources and documentation sources for learning more about SQLite, including official documentation and articles.
+
+
+
+
+
+
+
+### SQLite Books
+> Recommended books for learning SQLite, covering topics from beginner to advanced levels.
+
+
+
+
+
+
+### Language Bindings
+>Libraries and interfaces for integrating SQLite with different programming languages, such as R, Ruby, and Swift.
+
+
+
+
+### Tutorials
+> Online tutorials, videos, and resources for learning SQLite, including GitHub repositories, websites, and YouTube channels.
+
+
+