SQL
up:: Programming ⚐
SQL is a language to interact with Relational databases.
Create table
CREATE TABLE users (
ID INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT
);
Insert
INSERT INTO table_name (column1, column2) VALUES (value1, value2);
Update
UPDATE member_profile SET member_type = 'leads' WHERE id = 1;