• 数据库(聚合函数)


    select abs(-5)--绝对值 在结果框里显示
    print abc(-5)--消息框里显示
    select code,xingming,abs(yuwen)as yuwen from xhushengbiao
    select code,xingming,yuwen from xhushengbiao where ABS(yuwen)>95

    select *from xhushengbiao where ABS(yuwen)>95
    select CEILING(1.3)
    select CEILING(shuxue) form xueshengbiao where (shuxhe-CEILING(shuxue))!=0
    --分数减去上限的分数不等于零
    select CEILING(shuxue) form xueshengbiao where CEILING(shuxue)>=90
    数学取上限大于等于90的
    select FLOOR(shuxue) form xueshengbiao where code=8

    select '这是'+xingming+'年龄的平方:',POWER(aqe,2) from xueshengbiao

    select POWER(3,2)--表示3的2次方等于几就返回几


    select ROUND(2.55,2)--前面是数 后面参数是代表四舍五入到小数点后的第几位

    select shuxue,POWER(shuxue,2)as shehou from xueshengbiao

    select SQRT(4) --求平方根
    select SQUARE(4)--求平方

  • 相关阅读:
    Python--初识函数
    Python中的文件操作
    Python中的集合
    Python中的编码和解码
    Python的关键字is和==
    Python中的字典
    Python中的列表和元组
    Python中几种数据的常用内置方法
    Python的编码
    python_while
  • 原文地址:https://www.cnblogs.com/LCL390/p/4068003.html
Copyright © 2020-2023  润新知