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