1. 반올림함수 : ROUND


select ROUND(숫자데이터) from TableName;

 

ex) table명 : userTable, 반올림 할 데이터 : 10.26

select ROUND(10.26) from UserTable;

 

2. 평균 구하는 함수 : AVG


select AVG(ColumnName) from TableName;

 

 

+함수 안쓰고 평균 구하기

select SUM(ColumnName)/COUNT(*)) from TableName;

 

 

 

COUNT(*)은 데이터 총 갯수

* : 전체