Skip to content

Commit

Permalink
changing space
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinrfr committed Jan 27, 2022
1 parent fffae07 commit 36da987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql/how_to_load_csv_file_into_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down

0 comments on commit 36da987

Please sign in to comment.