Introduction to SQL using SQLite: Create Table
dev.to·20h·
Discuss: DEV
Flag this post

Objectives

  • Create A SQLite Database
  • Import Database Into an SQL Client
  • SQLite Data Types
  • Constraints
  • Create Table

Introduction

Previously, we discussed Databases briefly, and in this excerpt, we will look into SQL.

In this excerpt, we will discuss creating tables.

Create A SQLite Database

Creating a SQLite database is quite simple and straightforward. Create a file with a .sqlite extension. I will make one called app.sqlite. Open the newly created database with Beekeeper Studio or SQLite Browser.

In Beekeeper Studio, under the New Connection text, click on the…

Similar Posts

Loading similar posts...