Bug #35461 | Not able to insert '\' character. | ||
---|---|---|---|
Submitted: | 20 Mar 2008 15:19 | Modified: | 20 Mar 2008 15:32 |
Reporter: | Hema Sridharan | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server: DML | Severity: | S3 (Non-critical) |
Version: | mysql-6.0-backup | OS: | Linux |
Assigned to: | CPU Architecture: | Any |
[20 Mar 2008 15:19]
Hema Sridharan
[20 Mar 2008 15:32]
Valeriy Kravchuk
Sorry, but this is not a bug. Look: mysql> select version(); +-----------------------+ | version() | +-----------------------+ | 6.0.4-alpha-community | +-----------------------+ 1 row in set (0.00 sec) mysql> drop table t1; Query OK, 0 rows affected (0.56 sec) mysql> create table t1(a char(4))engine=myisam; Query OK, 0 rows affected (0.20 sec) mysql> insert into t1 values('*'),('%'),('^'); Query OK, 3 rows affected (0.06 sec) Records: 3 Duplicates: 0 Warnings: 0 mysql> insert into t1 values ('\\'); Query OK, 1 row affected (0.00 sec) mysql> select * from t1; +------+ | a | +------+ | * | | % | | ^ | | \ | +------+ 4 rows in set (0.05 sec) Please, read the manual, http://dev.mysql.com/doc/refman/5.0/en/string-syntax.html.
[26 May 2015 12:49]
zishan paya
Link is not working. In 6.2 '\' character is combining two cell when loading CSV file.