我从<代码>IN获取数据。 以这种形式提出的问题
SELECT * FROM wp_devices WHERE QID=’1′ and DId IN(36,71,37,39,38)
But they are displaying in this format DId IN(36,37,38,39,71)
instead of DId IN(36,71,37,39,38)
.
我应该做些什么?
我从<代码>IN获取数据。 以这种形式提出的问题
SELECT * FROM wp_devices WHERE QID=’1′ and DId IN(36,71,37,39,38)
But they are displaying in this format DId IN(36,37,38,39,71)
instead of DId IN(36,71,37,39,38)
.
我应该做些什么?
You should add order by clause to your query. Because your order is a little bizarre you must to write case workflow code:
SELECT *
FROM wp_devices
WHERE
QID= 1 and
DId IN (36,71,37,39,38)
ORDER BY
case DId
when 36 then 1
when 71 then 2
when 37 then 3
when 39 then 4
when 38 then 5
end
I suppose that you work with mysql because you have another question that is tagged like this. Then you can simplify previous query using field function:
SELECT *
FROM wp_devices
WHERE
QID= 1 and
DId IN (36,71,37,39,38)
ORDER BY
field( DId, 36,71,37,39,38 )
发出通知说,现场用示着一种暗含的种类。
在数据被丢弃之前实际操纵吗? 每一行都将有<代码>。 DId, as one of the Value in the row.
如果您需要具体命令,则按该顺序排出如下: > > 排出,并收回结果。
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...