db.ftd
is not yet translated
How to add more person in record?

Enter the following commands:

  1. sqlite3 db.sqlite
  2. INSERT INTO user (name, department) VALUES ("arpita", "engg");

We have created table user using the following commands:

CREATE TABLE user (
    id INTEGER PRIMARY KEY AUTOINCREMENT,
    name TEXT,
    department TEXT
);

Similiarly, You can also create new table and do entries.

Check out below the entry we have done in user table:

arpita
ayushi
Translated Blog says hello