plsql求最大值最大值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了plsql求最大值最大值相关的知识,希望对你有一定的参考价值。
参考技术A SQL> SELECT MAX(object_id) FROM t;MAX(OBJECT_ID)
--------------
82780 参考技术B 用的PL/SQL
假设表 a 取age的最大值,如果age是时间类型,用法也相同,不需要转换
select max(age) age from a;
如果不只是查询age一个字段,其他字段要分组 例如:要查class、name 、age的最大值
select class,name,max(age) age from a group by class,name
四个数求最大值
/*
============================================================================
Name : max4.c
Author : zhangsan
Version :
Copyright : Your copyright notice
Description : 四个数求最大值
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
int max2(int x,int y)
int k;
k=(x>y)?x:y;
return k;
int find_max(int a, int b, int c, int d)
int aa,bb,max;
aa=max2(a,b);
bb=max2(c,d);
max=max2(aa,bb);
return max;
int main(void)
int a,b,c,d;
int max;
setbuf(stdout,NULL);
printf("请输入4个整数:");
scanf("%d%d%d%d",&a,&b,&c,&d);
max=find_max(a, b, c, d);
printf("四个整数中的最大值是:%d",max);
return 1;
以上是关于plsql求最大值最大值的主要内容,如果未能解决你的问题,请参考以下文章