Answers for "load a log file in that format into MySQL"

SQL
0

load a log file in that format into MySQL

Copied
LOAD DATA INFILE '/local/access_log' INTO TABLE tbl_name
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' ESCAPED BY '\\'
Posted by: Guest on March-08-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language