इस दस्तावेज़ का अभी तक ⁨Hindi⁩ में अनुवाद नहीं हुआ है। आप ⁨English⁩ संस्करण देख रहे हैं।
अंतिम संशोधित तिथि :
कभी समन्वयित नहीं किया गया
अनुवाद की स्थिति दिखाएं
वर्तमान भाषा :
Hindi
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