Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. // cw 8
  2. EPDeployment deployment = compileAndDeploy(epRuntime,
  3. "select istream data, kursZamkniecia, max(kursZamkniecia) - kursZamkniecia as roznica, spolka " +
  4. "from KursAkcji(spolka in ('PepsiCo', 'CocaCola')).win:ext_timed_batch(data.getTime(), 7 days) " +
  5. "");
  6.  
  7. // cw 9
  8. // EPDeployment deployment = compileAndDeploy(epRuntime,
  9. // "select istream data, kursZamkniecia, spolka " +
  10. // "from KursAkcji(spolka in ('PepsiCo', 'CocaCola')).win:ext_timed_batch(data.getTime(), 1 day) " +
  11. // "having kursZamkniecia = max(kursZamkniecia)");
  12.  
  13. // cw 10
  14. // EPDeployment deployment = compileAndDeploy(epRuntime,
  15. // "select istream kursZamkniecia as maksimum " +
  16. // "from KursAkcji.win:ext_timed_batch(data.getTime(), 7 days) " +
  17. // "having kursZamkniecia = max(kursZamkniecia) ");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement