create table staff( Staff_id integer primary key, Staff_name varchar(20) not null, Staff_email varchar(35) not null, Company varchar(40) default 'Sri Ranganatha Pvt Lmtd.' ); insert into staff (Staff_id,Staff_name,Staff_email) values(20210901,'Vasudevan','[email protected]'); insert into staff (Staff_id,Staff_name,Staff_email) values(20210902,'Vasudevan','[email protected]'); insert into staff (Staff_id,Staff_name,Staff_email) values(20210903,'Karthick','[email protected]'); insert into staff values(20210966,'Karunya','[email protected]','Sri Ranganatha Groups'); insert into staff values(20210956,'Keerthana','[email protected]','Sri Ranganatha Groups'); insert into staff values(001,'Chandru Subramanya (MD - Managing Director)','[email protected]','Sri Ranganatha Groups of Companies'); insert into staff values(002,'Keerthi Nataraj (Secretary)','[email protected]','Sri Ranganatha Groups of Companies'); select * from staff; select distinct Staff_name from staff; select distinct Company from staff; select Staff_id as [Staff ID], Staff_name as [Staff Name], Staff_email as [Staff E-Mail ID],Company from Staff; alter table Staff add Age integer; update staff set Age=24 where Staff_id=001; update staff set Age=23 where Staff_id=002; update staff set Age=29 where Staff_id=20210901; update staff set Age=28 where Staff_id=20210902; update staff set Age=21 where Staff_id=20210903; update staff set Age=20 where Staff_id=20210966; update staff set Age=23 where Staff_id=20210956; select * from staff order by Age desc; select * from staff limit 2;
Write, Run & Share SQLite queries online using OneCompiler's SQLite online editor and compiler for free. It's one of the robust, feature-rich online editor and compiler for SQLite. Getting started with the OneCompiler's SQLite editor is really simple and pretty fast. The editor shows sample boilerplate code when you choose language as 'SQLite' and start writing queries to learn and test online without worrying about tedious process of installation.
SQLite is an in-process C library that implements small, fast, serverless, zero-configuration, transactional SQL database engine.
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
....);
CREATE TABLE EMPLOYEE (
empId INTEGER PRIMARY KEY,
name TEXT NOT NULL,
dept TEXT NOT NULL
);
ALTER TABLE Table_name ADD column_name datatype;
INSERT INTO EMPLOYEE VALUES (0001, 'Dave', 'Sales');
DROP TABLE table_name;
INSERT INTO table_name (column1, column2, column3, ...) VALUES (value1, value2, value3, ...);
Note: Column names are optional.
INSERT INTO EMPLOYEE VALUES (0001, 'Ava', 'Sales');
SELECT column1, column2, ...
FROM table_name
[where condition];
SELECT * FROM EMPLOYEE where dept ='sales';
UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;
UPDATE EMPLOYEE SET dept = 'Sales' WHERE empId='0001';
DELETE FROM table_name where condition;
DELETE from EMPLOYEE where empId='0001';
CREATE [UNIQUE] INDEX index_name on table_name(column_name);
DROP INDEX index_name ON table_name;
CREATE VIEW View_name AS
Query;
SELECT * FROM View_name;
ALTER View View_name AS
Query;
DROP VIEW View_name;
SELECT * FROM TABLE1 INNER JOIN TABLE2 where condition;
SELECT * FROM TABLE1 LEFT JOIN TABLE2 ON condition;
SELECT * FROM TABLE1 RIGHT JOIN TABLE2 ON condition;
SELECT select_list from TABLE1 CROSS JOIN TABLE2;