table tb index | date 1 | 2020 1 | 2021 2 | 2019 1. sum ex) SELECT sum(index) from tableName result = 3 2. max ex) SELECT MAX(index) from tableName result = 2 ex) SELECT MAX(date) from tableName result = 2021 2. min ex) SELECT MIN(index) from tableName result = 1 ex) SELECT MIN(date) from tableName result = 2019 2. count ex) SELECT COUNT(*) from tableName result = 2 ex) SELECT COUNT(*) from tabl..