当前位置:网站首页>SQLite reader plug-in tests SQLite syntax
SQLite reader plug-in tests SQLite syntax
2022-06-27 01:53:00 【flysh05】
A very useful plug-in , To do it SQLite Database creation , Data insertion modification , Delete , Update and other test verification .
1. Installing a plug-in
https://chrome.google.com/webstore/detail/sqlite-reader/clpnhenadbibdbfendahnlakkcpocmej

Easy browsing , Edit and manage... In the browser SQLite database !
SQLite Reader Is an extension , It can help you browse easily , Edit and render SQLite Database . On our website , You can easily get from PC or Google Drive Load in SQLite Database , Edit the database and save the file in PC Go up or Google On the cloud hard disk , You don't have to save it to your desktop . You can use all the actions in the browser ! The software 100% Free of charge , You don't have to pay .
2. test SQLite
https://sqlreader.freebusinessapps.net/reader
You can load the database locally , You can also load the database from the network disk , You can plug-ins Sample database

```sql
DROP TABLE IF EXISTS colleagues;
CREATE TABLE colleagues(id integer,name text,title text,manager integer,hired date,salary integer,commission float, dept integer);
INSERT INTO colleagues VALUES (1,'JOHNSON','ADMIN',6,'2011-12-17',18000,NULL,4);
INSERT INTO colleagues VALUES (2,'HARDING','MANAGER',9,'2011-02-02',52000,300,3);
INSERT INTO colleagues VALUES (3,'TAFT','SALES I',2,'2015-01-02',25000,500,3);
INSERT INTO colleagues VALUES (4,'HOOVER','SALES II',2,'2011-04-02',27000,NULL,3);
INSERT INTO colleagues VALUES (5,'LINCOLN','TECH',6,'2012-06-23',22500,1400,4);
INSERT INTO colleagues VALUES (6,'GARFIELD','MANAGER',9,'2013-05-01',54000,NULL,4);
INSERT INTO colleagues VALUES (7,'POLK','TECH',6,'2014-09-22',25000,NULL,4);
INSERT INTO colleagues VALUES (8,'GRANT','ENGINEER',10,'2014-03-30',32000,NULL,2);
INSERT INTO colleagues VALUES (9,'JACKSON','CEO',NULL,'2011-01-01',75000,NULL,4);
INSERT INTO colleagues VALUES (10,'FILLMORE','MANAGER',9,'2012-08-09',56000,NULL,2);
INSERT INTO colleagues VALUES (11,'ADAMS','ENGINEER',10,'2015-03-15',34000,NULL,2);
INSERT INTO colleagues VALUES (12,'WASHINGTON','ADMIN',6,'2011-04-16',18000,NULL,4);
INSERT INTO colleagues VALUES (13,'MONROE','ENGINEER',10,'2017-12-03',30000,NULL,2);
INSERT INTO colleagues VALUES (14,'ROOSEVELT','CPA',9,'2016-10-12',35000,NULL,1);
SELECT name, hired FROM colleagues ORDER BY hired ASC;
SELECT title, COUNT(*) AS count, (AVG(salary)) AS salary FROM colleagues GROUP BY title ORDER BY salary DESC;

The results are as follows :

** Basic grammar and common SQL Grammatical similarity .**
Delete data table usage drop:
DROP TABLE IF EXISTS Table name ;
Create table CREATE:
CREATE TABLE Table name ( Field name type , Field name 2 type 2);
insert data Insert:
INSERT INTO Table name VALUES ( value , value 2);
Query data Select:
SELECT Field name FROM Table name ORDER BY Field name ASC;
Modifying data UPDATA:
UPDATE Table name SET Field name =" value " where Field name = value
边栏推荐
- I encountered some problems when connecting to the database. How can I solve them?
- On the operation mechanism of numpy array
- Nokov motion capture system makes it possible for multi field cooperative UAV to build independently
- 简单学习GoogleColab的入门级概念
- 博日科技招股书失效,中金公司已停止对其辅导,放弃港交所上市?
- NOKOV动作捕捉系统使多场协同无人机自主建造成为可能
- Oracle/PLSQL: Substr Function
- 为什么传递SPIF_SENDCHANGE标志SystemParametersInfo会挂起?
- 执念斩长河暑期规划
- memcached基础10
猜你喜欢

lottie. JS creative switch button animal head

福元医药上市在即:募资净额将达到16亿元,胡柏藩为实际控制人

Clip: learning transferable visual models from natural language monitoring

Canvas particles: mouse following JS effect

three.js多米诺骨牌js特效

为什么传递SPIF_SENDCHANGE标志SystemParametersInfo会挂起?

Dameng database installation

h5液体动画js特效代码

Svg drag dress Kitty Cat

p5.js死亡星球
随机推荐
memcached基础13
Oracle/PLSQL: Soundex Function
hibernate 根据方言生成sql
Oracle/PLSQL: Rtrim Function
Clip: learning transferable visual models from natural language monitoring
dat.gui.js星星圆圈轨迹动画js特效
Oracle/PLSQL: Upper Function
递归是会更秀strtok
"All majors are persuading them to quit." is it actually the most friendly to college students?
numpy 数组运算机制浅探
Oracle/PLSQL: NumToYMInterval Function
Topolvm: kubernetes local persistence scheme based on LVM, capacity aware, dynamically create PV, and easily use local disk
Memcached foundation 9
Hot discussion: what are you doing for a meaningless job with a monthly salary of 18000?
Why pass SPIF_ Sendchange flag systemparametersinfo will hang?
Oracle/PLSQL: Replace Function
Oracle/PLSQL: NumToDSInterval Function
Oracle/PLSQL: CharToRowid Function
I encountered some problems when connecting to the database. How can I solve them?
Oracle/PLSQL: HexToRaw Function