
- 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
Advanced sorting in MySQL to display strings beginning with J at the end even after ORDER BY
For this, use ORDER BY LIKE operator. Let us first create a table −
mysql> create table DemoTable ( Name varchar(100) ); Query OK, 0 rows affected (0.60 sec)
Insert some records in the table using insert command −
mysql> insert into DemoTable values('John'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values('Adam'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable values('Chris'); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable values('Jace'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable values('David'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable values('Sam'); Query OK, 1 row affected (0.20 sec)
Display all records from the table using select statement −
mysql> select *from DemoTable;
This will produce the following output −
+-------+ | Name | +-------+ | John | | Adam | | Chris | | Jace | | David | | Sam | +-------+ 6 rows in set (0.00 sec)
Following is the query to display strings beginning with J at the end even after ORDER BY −
mysql> select *from DemoTable order by Name like '%J%',Name;
This will produce the following output −
+-------+ | Name | +-------+ | Adam | | Chris | | David | | Sam | | Jace | | John | +-------+ 6 rows in set (0.00 sec)
- Related Articles
- MySQL ORDER BY CASE to display special character in the beginning
- MySQL Order by beginning letter?
- MySQL ORDER BY strings with underscore?
- MySQL ORDER BY ASC and display NULLs at the bottom?
- MySQL Order By specific strings?
- Alphanumeric Order by in MySQL for strings mixed with numbers
- How to order records by a column in MySQL and place empty records at the end?
- MySQL LIKE command doesn't work with strings containing dots to display records beginning with a specific number
- Order strings by length of characters IN mYsql?
- Order by a single field and display rest of the records in the same order with MySQL
- Finding only strings beginning with a number using MySQL Regex?
- MySQL order by 0 first and then display the record in descending order?
- How to Order by date in MySQL but place empty dates in the end?
- Sorting numbers in descending order but with `0`s at the start JavaScript
- How to get the maximum value from a column with alphanumeric strings beginning with specific characters in MYSQL?

Advertisements