
- 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
MySQL query to get all characters before a specific character hyphen
For this, you can use SUBSTRING_INDEX(). Let us first create a table −
mysql> create table DemoTable1857 ( Name varchar(20) ); Query OK, 0 rows affected (0.00 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable1857 values('John-Smith'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1857 values('Brown-Chris'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1857 values('David-Carol-Miller'); Query OK, 1 row affected (0.00 sec)
Display all records from the table using select statement −
mysql> select * from DemoTable1857;
This will produce the following output −
+--------------------+ | Name | +--------------------+ | John-Smith | | Brown-Chris | | David-Carol-Miller | +--------------------+ 3 rows in set (0.00 sec)
Here is the query to get all characters before specific character hyphen −
mysql> select substring_index(Name,'-',1) Name from DemoTable1857;
This will produce the following output −
+-------+ | Name | +-------+ | John | | Brown | | David | +-------+ 3 rows in set (0.00 sec)
- Related Articles
- Get all characters before space in MySQL?
- MySQL query to split a column after specific characters?
- MySQL query to select a specific string with special characters
- MySQL query to get the character length for all the values in a column?
- MySQL query to display a substring before a special character in a string
- MySQL query to get a specific row from rows
- How to get everything before the last occurrence of a character in MySQL?
- How to get a specific column record from SELECT query in MySQL?
- MySQL Query to remove all characters after last comma in string?
- How to remove all instances of a specific character from a column in MySQL?
- MySQL query to get a substring from a string except the last three characters?
- MySQL query to remove numbers after hyphen in a VARCHAR string with numbers
- MySQL query to get substrings (only the last three characters) from strings?
- Get multiple count in a single MySQL query for specific column values
- MySQL query to find all rows where string contains less than four characters?

Advertisements