Advertisement
Guest User

op huy

a guest
Jan 14th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.25 KB | None | 0 0
  1. create table op_hui (
  2.   col1 text not null,
  3.   col2 text not null
  4. )
  5.  
  6. load data infile '/sdelal/bochku/sonul.huycov'
  7. into table op_hui
  8. fields terminated by ':'
  9. lines terminated by '\n'
  10. (col1, col2);
  11.  
  12.  
  13. select * from op_hui order by col1, col2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement