Detailed discussion of the character order of mysql order by in (recommended)

Detailed discussion of the character order of mysql order by in (recommended)
//MySQL statement SELECT * FROM `MyTable` WHERE `id` IN (11,1,111) ORDER BY FIELD(`id`, 11,1,111); 

Laravel Framework

$ids = array(1,17,2);

$ids_ordered = implode(',', $itemIds);

$items = static::whereIn('id', $ids)->orderByRaw(DB::raw("FIELD(id, $ids_ordered)"))->get();

The above article discusses the character sequence of mysql order by in (recommended) in detail. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL Order by statement usage and optimization detailed explanation
  • In-depth analysis of the order by and group by sequence issues in MySQL
  • How to use union and order by at the same time in MySQL
  • MySQL Order By Syntax Introduction
  • MySQL Order By Index Optimization Method
  • MySQL order by performance optimization method example
  • MySQL Order By Multi-Field Sorting Rules Code Example
  • Implementation analysis of MySQL ORDER BY
  • MySQL Order By Rand() Efficiency Analysis
  • Summary of three ways to implement ranking in MySQL without using order by

<<:  Reasons and solutions for failure of dynamically added routing pages in Vue when refreshing

>>:  Detailed explanation of the application of Docker Swarm in continuous integration testing

Recommend

Perfect solution to Google Chrome autofill problem

In Google Chrome, after successful login, Google ...

Zen coding resource update function enhancement

Official website: http://code.google.com/p/zen-cod...

Docker image import, export, backup and migration operations

Export: docker save -o centos.tar centos:latest #...

Detailed explanation of the pitfalls of MySQL 8.0

I updated MySQL 8.0 today. The first problem: Nav...

Implementation of Linux command line wildcards and escape characters

If we want to perform batch operations on a type ...

10 Popular Windows Apps That Are Also Available on Linux

According to data analysis company Net Market Sha...

Remote Desktop Connection between Windows and Linux

When it comes to remote desktop connection to Lin...

How to install mysql database in deepin 2014 system

Deepin 2014 download and installation For downloa...

Detailed tutorial on installing Anaconda3 on Ubuntu 18.04

Anaconda refers to an open source Python distribu...

Solve the conflict between docker and vmware

1. Docker startup problem: Problem Solved: You ne...

Learn MySQL execution plan

Table of contents 1. Introduction to the Implemen...

Table Tag (table) In-depth

<br />Table is a tag that has been used by e...

Test and solution for MySQL's large memory usage and high CPU usage

After the changes: innodb_buffer_pool_size=576M -...