Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.58 KB | None | 0 0
  1. -- prijate hovory delsi nez 5s
  2. SELECT `calldate`,`src`,`dst`,`duration`,`uniqueid`,`note` FROM `cdr` WHERE `dst` IN (310,312,314) AND `duration` >= 5 AND `disposition` = 'ANSWERED' ORDER BY `calldate` DESC;
  3.  
  4. -- neprijate hovory v pracovni dobe
  5. SELECT `calldate`,`src`,`dst`,`duration`,`uniqueid`,`note` FROM `cdr` WHERE `dst` = 's' AND `dcontext` = 'app-announcement-3' ORDER BY `calldate` DESC;
  6.  
  7. -- odchozi hovory
  8. SELECT `calldate`,`src`,`dst`,`duration`,`uniqueid`,`note` FROM `cdr` WHERE `src` IN (310,312,314) AND `duration` >= 5 AND `disposition` = 'ANSWERED' ORDER BY `calldate` DESC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement