
- 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
How to find strings with a given prefix in MySQL?
You can use LIKE operator to find strings with a given prefix.
The syntax is as follows
select *from yourTableName where yourColumnName LIKE 'yourPrefixValue%';
To understand the above syntax, let us create a table. The query to create a table is as follows
mysql> create table findStringWithGivenPrefixDemo -> ( -> UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> UserMessage text -> ); Query OK, 0 rows affected (0.82 sec)
Insert some records in the table using insert command.
The query is as follows
mysql> insert into findStringWithGivenPrefixDemo(UserMessage) values('Hi Good Morning !!!'); Query OK, 1 row affected (0.17 sec) mysql> insert into findStringWithGivenPrefixDemo(UserMessage) values('Hey I am busy!!'); Query OK, 1 row affected (0.20 sec) mysql> insert into findStringWithGivenPrefixDemo(UserMessage) values('Hello what are you doing!!!'); Query OK, 1 row affected (0.47 sec) mysql> insert into findStringWithGivenPrefixDemo(UserMessage) values('Hi I am learning MongoDB!!!'); Query OK, 1 row affected (0.15 sec)
Display all records from the table using select statement.
The query is as follows
mysql> select *from findStringWithGivenPrefixDemo;
The following is the output
+--------+-----------------------------+ | UserId | UserMessage | +--------+-----------------------------+ | 1 | Hi Good Morning !!! | | 2 | Hey I am busy!! | | 3 | Hello what are you doing!!! | | 4 | Hi I am learning MongoDB!!! | +--------+-----------------------------+ 4 rows in set (0.00 sec)
Here is the query to find strings with given prefix
mysql> select *from findStringWithGivenPrefixDemo where UserMessage LIKE 'Hi%';
The following is the output displaying only the strings with prefix “Hi”
+--------+-----------------------------+ | UserId | UserMessage | +--------+-----------------------------+ | 1 | Hi Good Morning !!! | | 4 | Hi i am learning MongoDB!!! | +--------+-----------------------------+ 2 rows in set (0.00 sec)
- Related Articles
- Program to find longest common prefix from list of strings in Python
- How to find all uppercase strings in a MySQL table?
- Python – Split Strings on Prefix Occurrence
- Program to perform prefix compression from two strings in Python
- C++ Program to Find the Longest Prefix Matching of a Given Sequence
- Find shortest unique prefix for every word in a given list in C++
- MySQL add “prefix” to every column?
- How to get the maximum value from strings with integers in MySQL?
- How to return static strings in MySQL?
- Can MySQL concatenate strings with ||?
- Maximum prefix-sum for a given range in C++
- Concatenating two strings in MySQL with space?
- Python Program to print strings based on the list of prefix
- Maximum sum increasing subsequence from a prefix and a given element after prefix is must in C++
- How to get the maximum value from a column with alphanumeric strings beginning with specific characters in MYSQL?

Advertisements