Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. select
  2. A.p_setid,
  3. (select C.Caption
  4. from cliplink C
  5. where C.p_setid = A.p_setid
  6. and coalesce(C.Caption, '') <> ''
  7. and C.mainobjectid = A.mainobjectid
  8. limit 1) Caption,
  9. (select FH.p_filename
  10. from cliplink FH
  11. where FH.p_setid = A.p_setid
  12. and FH.p_mimetype = 'video/x-flv'
  13. and FH.mainobjectid = A.mainobjectid
  14. order by FH.p_width desc, FH.p_height desc
  15. limit 1) flv_high,
  16. (select FL.p_filename
  17. from cliplink FL
  18. where FL.p_setid = A.p_setid
  19. and FL.p_mimetype = 'video/x-flv'
  20. and FL.mainobjectid = A.mainobjectid
  21. order by FL.p_width asc, FL.p_height asc
  22. limit 1) flv_low,
  23. (select QH.p_filename
  24. from cliplink QH
  25. where QH.p_setid = A.p_setid
  26. and QH.p_mimetype = 'video/quicktime'
  27. and QH.mainobjectid = A.mainobjectid
  28. order by QH.p_width desc, QH.p_height desc
  29. limit 1) qt_high,
  30. (select QL.p_filename
  31. from cliplink QL
  32. where QL.p_setid = A.p_setid
  33. and QL.p_mimetype = 'video/quicktime'
  34. and QL.mainobjectid = A.mainobjectid
  35. order by QL.p_width desc, QL.p_height desc
  36. limit 1) qt_low
  37.  
  38. from cliplink A
  39. where A.mainobjectid = 'GW0000030470'
  40. group by A.mainobjectid, A.p_setid
  41. -- limit 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement