如何让此结果显示在列中

时间:2019-02-28 02:42:36

标签: sql oracle oracle11g pivot

我在oracle数据库中有两个表。 表t1:

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry
          .addResourceHandler("/file/**")
          .addResourceLocations("file:///C:/Work/Testing/" );
}

http.authorizeRequests().antMatchers("/file/**").permitAll()

web.ignoring().antMatchers("/file/**");

表t2:

http://localhost:8080/file/hello.html -> Can see hello world page
https://localhost:8080/file/hello.html -> got 404 error

现在我想得到类似这样的结果

Account    name
  001       peter 
  002      george

如果我知道一个帐户最多可以进行几次付款,则可以使用以下SQL。

Account payday  amount
  001    190129    100
  001    190128     80
  001    190201     60
  002    190125     50

但是,如果我不知道最大付款时间,我可以使用SQL获得高于结果的付款吗?谢谢。

0 个答案:

没有答案