Created
March 5, 2012 09:18
-
-
Save anuvrat/1977603 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| create table names_table ( | |
| first_name varchar(20), | |
| last_name varchar(20), | |
| city varchar(20)); | |
| load data infile '/tmp/anu/20120219' | |
| into table names_table | |
| fields terminated by '\t' | |
| lines terminated by '\n' | |
| (first_name, last_name) | |
| set city='Bangalore'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment