diff --git a/mysql/how_to_load_csv_file_into_table.md b/mysql/how_to_load_csv_file_into_table.md index 46cf5fe..f8db026 100644 --- a/mysql/how_to_load_csv_file_into_table.md +++ b/mysql/how_to_load_csv_file_into_table.md @@ -14,8 +14,8 @@ LOAD DATA `creation_date`, @active ) - SET `phone_number` = REPLACE(@phone_number, '"', ''), - `active` = @IsActive AND 1; + SET `phone_number` = REPLACE(@phone_number, '"', ''), + `active` = @IsActive AND 1; ``` Some key points below extracted from original doc https://dev.mysql.com/doc/refman/8.0/en/load-data.html . Also at the bottom a common error that may occur about `Loading local data is disabled; this must be enabled on both the client and server sides`.