Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. 0: jdbc:hive2> select distinct A_COL from A_TABLE where A_COL='1999-05-04';
  2. +-------------+--+
  3. | A_COL |
  4. +-------------+--+
  5. | 1999-05-04 |
  6. +-------------+--+
  7. 1 row selected (6.127 seconds)
  8.  
  9. 0: jdbc:hive2> select count(*) from A_TABLE where A_COL='1999-05-04';
  10. +------+--+
  11. | _c0 |
  12. +------+--+
  13. | 0 |
  14. +------+--+
  15. 1 row selected (4.206 seconds)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement