为什么MySQL拒绝在INSERT INTO字符串中使用竖线('|')字符?

要在INSERT INTO的字符串中插入pipe(|)字符,我们首先来看一个示例并创建一个表。创建表的查询如下

mysql> create table PipeInsertDemo
   -> (
   -> UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   -> UserPassword varchar(100)
   -> );

使用insert命令在表中插入一些记录。查询如下-

mysql> insert into PipeInsertDemo(UserPassword) values('John123|');
mysql> insert into PipeInsertDemo(UserPassword) values('|123456CarolTaylor');
mysql> insert into PipeInsertDemo(UserPassword) values('Adam|345Smith');

使用select语句显示表中的所有记录。查询如下-

mysql> select *from PipeInsertDemo;

以下是输出

+--------+--------------------+
| UserId | UserPassword       |
+--------+--------------------+
|      1 | John123|           |
|      2 | |123456CarolTaylor |
|      4 | Adam|345Smith      |
+--------+--------------------+
3 rows in set (0.00 sec)