摘要: 条件语句 流程控制-if else set serverout on; declare employee_number number; begin select count(*) into employee_count from employees where employee_age>30; if 阅读全文
posted @ 2018-02-05 16:29 NE_STOP 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 利用聚合函数统计数据 求最大值-max() max()可应用数值型和字符型和日期型(实质也是数值型) select max(employee_age) max_age from employees max()应用字符型时,会按照字母表有前之后的顺序进行排序,如果含有英文名,则英文名永远排在中文名之前 阅读全文
posted @ 2018-02-05 15:35 NE_STOP 阅读(2) 评论(0) 推荐(0) 编辑