Creating a database in SQLite is a simple process. All you need to do is open up the command line interface (CLI) and type in the following command:
sqlite3
For example, if you wanted to create a database named “my_database”, you would enter the following command:
sqlite3 my_database
This will create a new database file with the name “my_database.db” in the current directory. You can then use the “.tables” command to see the list of tables in the database.