From 36da9878fb5449ba18a351397bd4a6e495a90a83 Mon Sep 17 00:00:00 2001 From: Kelvin Ferreira <10376375+k30v1n@users.noreply.github.com> Date: Thu, 27 Jan 2022 18:17:56 -0500 Subject: [PATCH] changing space --- mysql/how_to_load_csv_file_into_table.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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`.