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)
one. First of all, you have to package it in idea...
Follow the official tutorial, download the instal...
The installation tutorial of mysql 8.0.11 winx64 ...
Table of contents 1. Why do we need unit testing?...
1. Introduction The topic of whether to use forei...
Method 1: Download Pycharm and install Download a...
Table of contents getting Started Data storage Co...
Of course, there are many people who hold the oppo...
To replace a string, we need to use the following...
Table of contents 1. Retrieve via --skip-grant-ta...
Table of contents 1. Falling into the pit 2. Stru...
Table of contents 1. Basic knowledge of indexing ...
In new projects, axios can prevent duplicate subm...
Business scenario requirements and implementation...
Array Methods JavaScript has provided many array ...