当前位置:网站首页>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
边栏推荐
- 二叉樹oj題目
- hibernate 根据方言生成sql
- p5.js死亡星球
- Oracle/PLSQL: Lower Function
- 达梦数据库安装
- C# Tcp服务器如何限制同一个IP的连接数量?
- Due to the invalidation of the prospectus of bori technology, CICC has stopped providing guidance to it and abandoned the listing on the Hong Kong stock exchange?
- Daily question brushing record (V)
- memcached基础10
- UVM in UVM_ config_ Setting and obtaining DB non-linear
猜你喜欢

Press key to control LED status reversal

参数估计——《概率论及其数理统计》第七章学习报告(点估计)

Recursion will make strtok more attractive

Installing the Damon database using the command line

canvas粒子篇之鼠标跟随js特效

二叉树oj题目

Hot discussion: what are you doing for a meaningless job with a monthly salary of 18000?

Simply learn the entry-level concepts of googlecolab

p5.js死亡星球

ThreadLocal详解
随机推荐
“所有专业都在劝退”,对大学生最友好的竟然是它?
Why pass SPIF_ Sendchange flag systemparametersinfo will hang?
二叉樹oj題目
dat.gui.js星星圆圈轨迹动画js特效
简单学习GoogleColab的入门级概念
Meituan: data management and pit avoidance strategy summarized after stepping on Thunder for several years
Systematic analysis of social networks using Networkx: Facebook network analysis case
Parameter estimation -- Chapter 7 study report of probability theory and mathematical statistics (point estimation)
Interface isolation principle
Daily question brushing record (V)
Simply learn the entry-level concepts of googlecolab
Oracle/PLSQL: Upper Function
C# Tcp服务器如何限制同一个IP的连接数量?
博日科技招股书失效,中金公司已停止对其辅导,放弃港交所上市?
XSS attack (note)
lottie. JS creative switch button animal head
Oracle/PLSQL: Lower Function
Oracle/PLSQL: NumToDSInterval Function
Look! In June, 2022, the programming language ranking list was released! The first place is awesome
图论知识及其应用初步调研