目前我有这样的情况,我可以展示产品结果,即“没有发现的”元件“产品_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.