📜  SQLite-有用的功能

📅  最后修改于: 2021-01-04 05:10:39             🧑  作者: Mango


SQLite具有许多内置函数,可对字符串或数字数据进行处理。以下是一些有用的SQLite内置函数的列表,所有这些函数都不区分大小写,这意味着您可以小写形式,大写形式或混合形式使用这些功能。有关更多详细信息,可以查看SQLite的官方文档。

Sr.No. Function & Description
1

SQLite COUNT Function

SQLite COUNT aggregate function is used to count the number of rows in a database table.

2

SQLite MAX Function

SQLite MAX aggregate function allows us to select the highest (maximum) value for a certain column.

3

SQLite MIN Function

SQLite MIN aggregate function allows us to select the lowest (minimum) value for a certain column.

4

SQLite AVG Function

SQLite AVG aggregate function selects the average value for certain table column.

5

SQLite SUM Function

SQLite SUM aggregate function allows selecting the total for a numeric column.

6

SQLite RANDOM Function

SQLite RANDOM function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807.

7

SQLite ABS Function

SQLite ABS function returns the absolute value of the numeric argument.

8

SQLite UPPER Function

SQLite UPPER function converts a string into upper-case letters.

9

SQLite LOWER Function

SQLite LOWER function converts a string into lower-case letters.

10

SQLite LENGTH Function

SQLite LENGTH function returns the length of a string.

11

SQLite sqlite_version Function

SQLite sqlite_version function returns the version of the SQLite library.

在开始提供上述功能的示例之前,请考虑带有以下记录的COMPANY表。

ID          NAME        AGE         ADDRESS     SALARY
----------  ----------  ----------  ----------  ----------
1           Paul        32          California  20000.0
2           Allen       25          Texas       15000.0
3           Teddy       23          Norway      20000.0
4           Mark        25          Rich-Mond   65000.0
5           David       27          Texas       85000.0
6           Kim         22          South-Hall  45000.0
7           James       24          Houston     10000.0

SQLite COUNT函数

SQLite COUNT聚合函数用于计算数据库表中的行数。以下是一个例子-

sqlite> SELECT count(*) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

count(*)
----------
7

SQLite MAX函数

SQLite MAX聚合函数使我们可以为特定列选择最高(最大值)值。以下是一个例子-

sqlite> SELECT max(salary) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

max(salary)
-----------
85000.0

SQLite MIN函数

SQLite MIN聚合函数允许我们为特定列选择最低(最低)值。以下是一个例子-

sqlite> SELECT min(salary) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

min(salary)
-----------
10000.0

SQLite AVG函数

SQLite AVG聚合函数选择某个表列的平均值。以下是一个例子-

sqlite> SELECT avg(salary) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

avg(salary)
----------------
37142.8571428572

SQLite SUM函数

SQLite SUM聚合函数允许为数字列选择总计。以下是一个例子-

sqlite> SELECT sum(salary) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

sum(salary)
-----------
260000.0

SQLite RANDOM函数

SQLite RANDOM函数返回-9223372036854775808和+9223372036854775807之间的伪随机整数。以下是一个例子-

sqlite> SELECT random() AS Random;

上面的SQLite SQL语句将产生以下内容。

Random
-------------------
5876796417670984050

SQLite ABS功能

SQLite ABS函数返回数字参数的绝对值。以下是一个例子-

sqlite> SELECT abs(5), abs(-15), abs(NULL), abs(0), abs("ABC");

上面的SQLite SQL语句将产生以下内容。

abs(5)      abs(-15)    abs(NULL)   abs(0)      abs("ABC")
----------  ----------  ----------  ----------  ----------
5           15                      0           0.0

SQLite UPPER函数

SQLite UPPER函数将字符串转换为大写字母。以下是一个例子-

sqlite> SELECT upper(name) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

upper(name)
-----------
PAUL
ALLEN
TEDDY
MARK
DAVID
KIM
JAMES

SQLite LOWER函数

SQLite LOWER函数将字符串转换为小写字母。以下是一个例子-

sqlite> SELECT lower(name) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

lower(name)
-----------
paul
allen
teddy
mark
david
kim
james

SQLite LENGTH函数

SQLite LENGTH函数返回字符串的长度。以下是一个例子-

sqlite> SELECT name, length(name) FROM COMPANY;

上面的SQLite SQL语句将产生以下内容。

NAME        length(name)
----------  ------------
Paul        4
Allen       5
Teddy       5
Mark        4
David       5
Kim         3
James       5

SQLite sqlite_version函数

SQLite sqlite_version函数返回SQLite库的版本。以下是一个例子-

sqlite> SELECT sqlite_version() AS 'SQLite Version';

上面的SQLite SQL语句将产生以下内容。

SQLite Version
--------------
3.6.20