method: By desc: Neither can be achieved: Method 1: select sp.productid,sp.productname,ss.sku from sp_product sp inner join sku_skus ss on sp.productid=ss.productid where sp.productname='Lux Forever Rejuvenating Soap 115g' or sp.productname='Crest Green Tea Mint Toothpaste 180g' or sp.productname='Xinwei Orchard Orchid Beans 190g/bag 1 bag of roasted beans and snacks' order by ( case when sp.productid=11042723 then 1 ELSE 2 END) Method 2: Core SQL select sp.productid,sp.productname,ss.sku from sp_product sp inner join sku_skus ss on sp.productid=ss.productid where sp.productname='Lux Forever Rejuvenating Soap 115g' or sp.productname='Crest Green Tea Mint Toothpaste 180g' or sp.productname='Xinwei Orchard Orchid Beans 190g/bag 1 bag roasted beans snacks' ORDER BY sp.productid not in(11042723) Mysql: Put the specified data row in front SELECT * FROM user ORDER BY user_id<>7,score DESC; Mainly "user_id<>7", the user with id 7 will be ranked first. SELECT * FROM user ORDER BY user_id NOT IN(7,8,9),score DESC; mysql sort a column by specifying the value first SELECT * FROM `jcxsw`.`t_company_product` order by ( case when id=263 then 1 ELSE 4 END),category_id desc; This SQL code will first sort the data with id = 263 and then sort in reverse order according to category_id SELECT * FROM `web_membersfastsort_women` m order by m.province<>'10106000' , m.city<>'10106001' ,m.city desc,m.province desc,m.s_cid asc, m.images_ischeck desc,m.pic_num desc limit 2000,30 The first row of province = 10106000, the first row of city = 10106001 in province = 10106000 You may also be interested in:
|
<<: Detailed explanation of the correct way to configure SSL (https certificate) in Apache on Ubuntu
>>: TimePicker in element disables part of the time (disabled to minutes)
1. Varnish Overview 1. Introduction to Varnish Va...
This reading note mainly records the operations r...
This article mainly introduces the analysis of My...
Preface This article mainly introduces the releva...
This article example shares the specific code of ...
During development, a good user interface will al...
1. Display the files or directories in the /etc d...
In ordinary projects, I often encounter this prob...
Table of contents What is nginx 1. Download the r...
First, let’s take a look at a CSS carousel animat...
This article shares the specific code for JavaScr...
Table of contents 1. Introduction to computed 1.1...
1. Understanding the meaning of web standards-Why...
Table of contents 1. Unzip 2. Create a data folde...
As we all know, there are two types of images in c...