English 中文(简体)
如何通过按习俗计量的查询——价值——价格指数
原标题:How to order by query by custom meta_value - SQL - PHP

目前我有这样的情况,我可以展示产品结果,即“没有发现的”元件“产品_info”中的“生产数据”。

我目前的问询是:

SELECT *
FROM `wp_postmeta`
WHERE `meta_key` LIKE  product_info 
    AND `meta_value` LIKE  %Product data not found% 

除此以外,我还必须能够按最老到最新老的顺序显示这些数据,这种数据以数字形式载于“最后日期”元。

我如何使用order by with the meta_key “last_update”

页: 1

post_id   meta_key         meta_value
19248   product_info     Product data not found
19248   last_update      1959520849
19249   product_info     Product data not found
19249   last_update      1659520849
19250   product_info     OK
19250   last_update      1759520849
19251   product_info     Product data not found
19251   last_update      1859520849

因此,我希望做到这一点。

post_id   meta_key         meta_value
19249   product_info     Product data not found
//not visible result 19249   last_update      1659520849
19251   product_info     Product data not found
//not visible result 19251   last_update      1859520849
19248   product_info     Product data not found
//not visible result 19248   last_update      1959520849

我们能够看到,从最低数字中订购的只是考虑到其产品“不发现生产数据”中的员额。

无明显结果=我这样说,你可以看到,它会及时订购。

Sorry if the question is poorly phrased, I m new to SQL.

最佳回答

您需要JOINwp_postmeta ,再看同一<代码>post_id和meta_keylast_update。 届时,你可以<代码>。 页: 1 www.un.org/chinese/sc/presidency.asp 下表:

SELECT wp1.*
FROM wp_postmeta wp1
LEFT JOIN wp_postmeta wp2 ON wp2.post_id = wp1.post_id AND wp2.meta_key =  last_update 
WHERE wp1.meta_key LIKE  product_info  AND wp1.meta_value LIKE  %Product data not found% 
ORDER BY COALESCE(wp2.meta_value, 0)

抽样数据:

post_id meta_key        meta_value
19249   product_info    Product data not found
19251   product_info    Product data not found
19248   product_info    Product data not found

Demo on db-fiddle.com

注:I ve使用了LEFT JOIN with COALESCE,以处理无<代码>的任何员额。 COALESCE中的数值是指这些员额将首先分类;如果你想要最后定级,则使用<条码>COALESCE(wp2.meta_ Value, 2147483647)。

问题回答

在这种表格结构中积累相关数据的一种非常常见的做法,是用纸张。 已知一栏名的争 que使开发和维护你的询问更加容易,因为在从总数据中抹去预期值之后,你可以享有非常简单的机会。

采用组别和通过综合数据进行计算的好处,似乎在开始时就好像是许多工作,但是当你开始为单一<代码>设置多个分行时,这种办法确实审查了其奖励。

<>Schema>(MySQL v8.0)

CREATE TABLE wp_postmeta (
  `post_id` INTEGER,
  `meta_key` VARCHAR(50),
  `meta_value` VARCHAR(50)
);

INSERT INTO wp_postmeta
  (`post_id`, `meta_key`, `meta_value`)
VALUES
  ( 19248 ,  product_info ,  Product data not found anywhere ),
  ( 19248 ,  last_update ,  1959520849 ),
  ( 19249 ,  product_info ,  This Product data not found ),
  ( 19249 ,  last_update ,  1659520849 ),
  ( 19250 ,  product_info ,  OK ),
  ( 19250 ,  last_update ,  1759520849 ),
  ( 19251 ,  product_info ,  Product data not found ...yes, I looked ),
  ( 19251 ,  last_update ,  1859520849 );

SELECT post_id,
       MAX(CASE meta_key WHEN  product_info  THEN meta_value END) product_info,
       MAX(CASE meta_key WHEN  last_update  THEN meta_value END) last_update
FROM wp_postmeta
GROUP BY post_id
HAVING MAX(CASE meta_key WHEN  product_info  THEN meta_value END) LIKE  %Product data not found% 
ORDER BY last_update;
post_id product_info last_update
19249 This Product data not found 1659520849
19251 Product data not found ...yes, I looked 1859520849
19248 Product data not found anywhere 1959520849

我先前就ot物专题提出的一些相关建议:





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

难以执行 REGEXP_SUBSTR

I m 查询Oracle 10g。 我有两张表格(样本数据见下文)。 i m 试图提取一些领域

SQL Query Shortcuts

What are some cool SQL shorthands that you know of? For example, something I learned today is you can specify to group by an index: SELECT col1, col2 FROM table GROUP BY 2 This will group by col2

PHP array callback functions for cleaning output

I have an array of output from a database. I am wondering what the cleanest way to filter the values is example array Array ( [0] => Array ( [title] => title 1 ...

OracleParameter and DBNull.Value

we have a table in an Oracle Database which contains a column with the type Char(3 Byte). Now we use a parameterized sql to select some rows with a DBNull.Value and it doesn t work: OracleCommand ...

Running numbers in SQL

I have a SQL-statement like this: SELECT name FROM users WHERE deleted = 0; How can i create a result set with a running number in the first row? So the result would look like this: 1 Name_1 2 ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签