Sling Academy
Home/SQLite/ CRUD Operations in SQLite

CRUD Operations in SQLite

This series of tutorials teaches you the basics about CRUD operations (Create - Read - Update - Delete) in SQLite:

  • Creating Data
    • INSERT INTO syntax
    • Inserting multiple rows
  • Reading Data
    • Basic SELECT statements
    • Filtering with WHERE, BETWEEN, IN, LIKE
    • Sorting results with ORDER BY
  • Updating Data
    • UPDATE statements
    • Updating multiple records
  • Deleting Data
    • DELETE FROM syntax
    • Truncating tables

1 Creating Data in SQLite: A Beginner's Guide

2 Mastering the SQLite INSERT INTO Syntax

3 How to Insert Multiple Rows in SQLite in One Query

4 Understanding Basic SELECT Statements in SQLite

5 Filtering Data in SQLite Using the WHERE Clause

6 How to Use BETWEEN for Range Queries in SQLite

7 Making Queries Simpler with IN in SQLite

8 Using LIKE for Pattern Matching in SQLite Queries

9 Sorting Results in SQLite Using ORDER BY

10 SQLite UPDATE Statement: Syntax and Examples

11 How to Update Multiple Records in SQLite

12 Deleting Data in SQLite: A Quick Guide

13 Mastering the DELETE FROM Syntax in SQLite

14 Truncating Tables in SQLite: What You Need to Know

15 Executing INSERT Commands Effectively in SQLite

16 How to Avoid Common Mistakes in SQLite INSERT INTO Statements

17 Filtering Data Dynamically in SQLite Queries

18 Advanced Uses of WHERE in SQLite Queries

19 Understanding Pattern Matching with SQLite LIKE

20 Using ORDER BY to Sort Data Alphabetically or Numerically in SQLite

21 Combining WHERE and ORDER BY in SQLite Queries

22 Updating Data in SQLite Without Errors

23 Best Practices for Using the UPDATE Statement in SQLite

24 Deleting Data Safely in SQLite Using DELETE FROM

25 SQLite Truncation: How to Clear Table Data Efficiently

26 The Basics of SQLite CRUD Operations

27 How to Insert, Read, Update, and Delete Data in SQLite

28 Filtering Data in SQLite with Advanced Conditions

29 Combining WHERE with BETWEEN in SQLite Queries

30 Optimizing Pattern Searches Using LIKE in SQLite

31 ORDER BY in SQLite: Sorting Your Data Effectively

32 How to Update Rows Dynamically in SQLite Tables

33 Batch Updating Records with SQLite UPDATE Statements

34 A Step-by-Step Guide to Deleting Data in SQLite

35 The Differences Between DELETE FROM and DROP in SQLite

36 When and How to Truncate Tables in SQLite

37 Managing Table Data with SQLite CRUD Operations

38 INSERT, UPDATE, DELETE: The Core of SQLite CRUD Basics

39 How to Write Efficient SELECT Queries in SQLite

40 Filtering, Sorting, and Updating Data in SQLite Made Easy

41 SQLite UPSERT tutorial (insert if not exist, update if exist)

42 How to use regular expressions (regex) in SQLite