Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. drop table test_tbl;
  2.  
  3. CREATE TABLE test_tbl (
  4. a String,
  5. b String,
  6. c String
  7. ) ENGINE=Memory;
  8.  
  9. INSERT INTO test_tbl(a, b, c) FORMAT TSV
  10. a1 b1 c1
  11. a2\ttab b2 c2
  12. a3 b3 c3
  13.  
  14. INSERT INTO test_tbl(a, b, c) FORMAT TSV
  15. a4 b4 c4
  16. a5\ttab b5 c5
  17. a6 b6 c6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement