English 中文(简体)
2. 无需订购的查询数据表
原标题:Get data form IN query without ordering
  • 时间:2012-01-12 09:11:10
  •  标签:
  • php

我从<代码>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.

如果您需要具体命令,则按该顺序排出如下: > > 排出,并收回结果。





相关问题
Brute-force/DoS prevention in PHP [closed]

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 ...

please can anyone check this while loop and if condition

<?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 = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

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 ...

Text as watermarking in PHP

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?

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 ...