search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Programming Dictionary

Online technical manual for service programmers
Popular searches:
Dictionary homepage database SQLite SQLite MIN function
SQLite MIN function Detailed instructions for use

SQLite MIN function

Chinese translation Recent Updates: 2018-05-16 14:18:47

min

abbr.minute minute;minuto (Portuguese or Spanish=minute) (Portuguese or Spanish) minute;minority minority;miniature small

SQLite MIN function syntax

Function:SQLite MIN aggregate function allows us to select the minimum value of a column.

Syntax: sqlite> SELECT min(a certain column of data) FROM TABLENAME;

SQLite MIN function example

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> SELECT min(salary) FROM COMPANY;

结果:
min(salary)
-----------
10000.0
SQLite MIN function