How to add more person in record?
Enter the following commands:
sqlite3 db.sqliteINSERT 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