SQL digital correlation function

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/qq_39469691/article/details/102736274

SQL digital correlation function

  1. Rounding down
grammar Examples Sample results
floor(num) select floor(3.84) from table 3
  1. rounding
grammar Examples Sample results
floor(num) select round(3.84) from table 3
floor(num,m) select round(3.84,1) from table 3.8

Guess you like

Origin blog.csdn.net/qq_39469691/article/details/102736274