如果在TYPO3扩展名中为空,则按特定字段和另一个字段排序

时间:2012-03-29 07:37:20

标签: php mysql sql-order-by typo3

我弄清楚了一个我无法弄清楚的问题。我正在列出产品的价格,其中包含三列(price1, price2, price3)的价格,其中每个价格列适用于该产品的特定版本。

某些产品可能没有价格1的价格,因为该版本中不存在,而少数产品只有价格3的价格。

我是否可以获得将按价格列出订购产品的ORDER BY,因此如果仅在price3中具有价格5400的产品将在价格为5300的产品之后列出。

如果我按价格1订购,那么没有price1价格的产品将列在顶部。

我使用的是TYPO3扩展覆盖,其中SQL语句是

tx_overlays::getAllRecordsForTable('*', 'tx_rtmur_bricks', $where, '', 'price1 ASC');

在'GROUP BY

之后的''

编辑:

现在列出它的方式:

Product 472
Price pr 1000 pcs: 7.730 in version 3

Product 201
Price pr 1000 pcs: 5.690 in version 1
Price pr 1000 pcs: 7.315 in version 2

Product 301
Price pr 1000 pcs: 5.690 in version 1
Price pr 1000 pcs: 7.315 in version 2

Product 309
Price pr 1000 pcs: 6.760 in version 1
Price pr 1000 pcs: 7.350 in version 3

我希望它以这种方式排序:

Product 201
Price pr 1000 pcs: 5.690 in version 1
Price pr 1000 pcs: 7.315 in version 2

Product 301
Price pr 1000 pcs: 5.690 in version 1
Price pr 1000 pcs: 7.315 in version 2

Product 309
Price pr 1000 pcs: 6.760 in version 1
Price pr 1000 pcs: 7.350 in version 3

Product 472
Price pr 1000 pcs: 7.730 in version 3

3 个答案:

答案 0 :(得分:1)

好的,这是另一个答案。我仍然推荐前一个,重构你的代码和你的数据库将需要一些工作,这是不可能的。您的数据库的升级脚本应该非常直接地编写,因此您可以保留所有数据..

无论如何这里是一个解决方案。你必须翻译字段名称,因为我使用我自己的测试集构建了它:

select * from 
 (select id as id, "version 1" as version , price1 as price from tx_rtmur_bricks
    where price1 is not null
  union 
   select id, "version 2", price2 from tx_rtmur_bricks where price2 is not null 
  union 
   select id, "version 3", price3 from tx_rtmur_bricks where price3 is not null
 ) p 
group by p.id, p.price asc;

所以你看到它变得多么复杂......

您可能需要通过params调整组,并在选项中添加一些列以获得您想要的内容。

编辑:结果应该是:

Product, Version, Price
123, "Version 1", 5.50
123, "Version 3", 7.50
134, "Version 1", 5.50
134, "Version 2", 6,50
154, "Version 3", 8,50
etc

答案 1 :(得分:0)

我强烈建议您重构数据库结构并为产品版本创建一个单独的表格,其中包含价格:

Product_version:
id,
productId (foreign key),
version (name or number..),
price

这样可以使这些查询变得更简单,当你有更多或更少的3个版本时,它会更容易管理。

您的查询类似于:

select * from product p 
inner join version v on p.id = v.pid 
group by p.id,  price asc;

答案 2 :(得分:0)

这是一个很长的镜头,因为我现在无法测试。但也许你可以通过CASE订购?

SELECT * FROM Product
ORDER BY ProductID, CASE WHEN Price3 IS NULL THEN
CASE WHEN Price2 IS NULL THEN Price1 ELSE Price2 END ELSE Price3 END