Como escapar do caractere '%' na parte esquerda e central das strings em uma coluna MySQL?
Vamos primeiro criar uma tabela:
mysql> create table DemoTable629 (StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,StudentSubject text);
Query OK, 0 rows affected (0.77 sec)
Insira alguns registros na tabela usando o comando insert:
mysql> insert into DemoTable629(StudentSubject) values('MySQL%');
Query OK, 1 row affected (0.15 sec)
mysql> insert into DemoTable629(StudentSubject) values('Spring%Hibernate');
Query OK, 1 row affected (0.16 sec)
mysql> insert into DemoTable629(StudentSubject) values('%Java');
Query OK, 1 row affected (0.21 sec)
Exiba todos os registros da tabela usando a instrução select:
mysql> select *from DemoTable629;
Isso produzirá a seguinte saída:
+-----------+------------------+
| StudentId | StudentSubject |
+-----------+------------------+
| 1 | MySQL% |
| 2 | Spring%Hibernate |
| 3 | %Java |
+-----------+------------------+
3 rows in set (0.00 sec)
A seguir está a consulta para escapar do caractere '%':
mysql> select *from DemoTable629
where StudentSubject like '%\%';
Isso produzirá a seguinte saída:
+-----------+----------------+
| StudentId | StudentSubject |
+-----------+----------------+
| 1 | MySQL% |
+-----------+----------------+
1 row in set (0.00 sec)