
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Is there a way to select a value which matches partially in MySQL?
To match partially, use LIKE operator. Let us first create a table −
mysql> create table DemoTable806( StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, StudentName varchar(100), StudentSubject varchar(100) ); Query OK, 0 rows affected (0.57 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable806(StudentName,StudentSubject) values('Chris','Java in Depth With Data Structure'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable806(StudentName,StudentSubject) values('Robert','Introduction to MySQL'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable806(StudentName,StudentSubject) values('Bob','C++ in Depth With Data Structure And Algorithm'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable806(StudentName,StudentSubject) values('Adam','Introduction to MongoDB'); Query OK, 1 row affected (0.11 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable806;
This will produce the following output −
+-----------+-------------+------------------------------------------------+ | StudentId | StudentName | StudentSubject | +-----------+-------------+------------------------------------------------+ | 1 | Chris | Java in Depth With Data Structure | | 2 | Robert | Introduction to MySQL | | 3 | Bob | C++ in Depth With Data Structure And Algorithm | | 4 | Adam | Introduction to MongoDB | +-----------+-------------+------------------------------------------------+ 4 rows in set (0.00 sec)
Following is the query to select a value which matches partially −
mysql> select *from DemoTable806 where StudentSubject LIKE '%Depth%';
This will produce the following output −
+-----------+-------------+------------------------------------------------+ | StudentId | StudentName | StudentSubject | +-----------+-------------+------------------------------------------------+ | 1 | Chris | Java in Depth With Data Structure | | 3 | Bob | C++ in Depth With Data Structure And Algorithm | +-----------+-------------+------------------------------------------------+ 2 rows in set (0.00 sec)
- Related Articles
- Is there a way to retrieve the minimum value of fields in MySQL?
- Is there any way to use values from a JSON object in a MySQL Select statement?\n
- Is there a way to know your current username in MySQL?
- Is there an easy way to rename a table in a MySQL procedure?
- In MySQL, is there a way to turn column records into a list?
- Is there a way to make a list from a MySQL table in Java?
- Is there a way to create a MySQL “alias” while creating a VIEW?
- Is there a way to name columns in an INSERT statement in MySQL?
- Is there a way to subtract number of days from a date in MySQL?
- Is there a way in MySQL to reverse a boolean field with a single query?
- Which is the fastest way to get a column's maximum value in MySQL?
- Is there any way to check if there is a null value in an object or array in JavaScript?
- Is there any easy way to add multiple records in a single MySQL query?
- Is there a default ORDER BY value in MySQL?
- Is there a way to list collections in MongoDB?

Advertisements