1floor(x) - Find the largest integer not greater than x
2Example:
3  > SELECT floor(-0.1) FROM src LIMIT 1;
4  -1
5  > SELECT floor(5) FROM src LIMIT 1;
6  5
7