
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Ignore Specific Character in MySQL Query Results
To ignore a specific character, use NOT LIKE operator. Let us first create a table −
mysql> create table DemoTable1366 -> ( -> CountryName varchar(20) -> ); Query OK, 0 rows affected (0.77 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable1366 values('AUS'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable1366 values('UK'); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable1366 values('US'); Query OK, 1 row affected (0.10 sec)
Display all records from the table using select statement −
mysql> select * from DemoTable1366;
This will produce the following output −
+-------------+ | CountryName | +-------------+ | AUS | | UK | | US | +-------------+ 3 rows in set (0.00 sec)
Here is the query to ignore displaying results containing a specific character −
mysql> select * from DemoTable1366 where CountryName NOT LIKE '%S';
This will produce the following output −
+-------------+ | CountryName | +-------------+ | UK | +-------------+ 1 row in set (0.00 sec)
Advertisements