在论坛中出现的比较难的sql问题:30(row_number函数 物料组合问题)

原文: 在论坛中出现的比较难的sql问题:30(row_number函数 物料组合问题)

在论坛中,遇到了不少比较难的sql问题,虽然自己都能解决,但发现过几天后,就记不起来了,也忘记解决的方法了。

所以,觉得有必要记录下来,这样以后再次碰到这类问题,也能从中获取解答的思路。


MS-SQL 根据实际所需规格table去比对另一个库存table取浪费最少的数据

http://bbs.csdn.net/topics/390619048

情境描述:根据表A里的物料去比对表B,然后表A根据A1括号里两个尺寸浪费最少来将A1替换成最省的物料。


表A用量需求表:Table A


A0(自增长ID)   A1(物料编号)   
-------------------------------
0                    ls001-(900*110)
1                    ls002-(200*300)
....


表B库存物料表: B1没有重复,可以当作ID来使用 Table B:

B1(库存物料)        B2(规格1)      B3(规格2)
----------------------------------------------
ls001-(700*200)     700            200
ls001-(910*140)     910            140
ls001-(920*120)     920            120
...                 ...            ...
ls002-(100*200)     100            200
ls002-(200*350)     200            350
ls002-(220*320)     220            320
...              
 
原理是:ls001取(920*120)的话浪费分别是左边920-900=20,右边120-110=10,总共浪费是30, 是ls001库存规格(700*200),(910*140),(920*120)里浪费最少的,ls002同理。

最后A1字段被替换后的效果如下:

A0(自增长ID)   A1(物料编号)   
-------------------------------
0              ls001-(920*120)
1              ls002-(220*320)
...

各位有什么好的方案或者算法可分享来学习借鉴一下 ^_^


我的解法:


   
   
  1. drop table a
  2. drop table b
  3. create table a (a0 int,a1 varchar( 100),a2 int,a3 int)
  4. insert into a
  5. SELECT 0, 'ls001-(900*110)', 900, 110 UNION ALL
  6. SELECT 1, 'ls002-(200*300)', 200, 300
  7. create table b (B1 varchar( 100),B2 int,B3 int)
  8. insert into b
  9. SELECT 'ls001-(700*200)', 700, 200 UNION ALL
  10. SELECT 'ls001-(910*140)', 910, 140 UNION ALL
  11. SELECT 'ls001-(920*120)', 920, 120 UNION ALL
  12. SELECT 'ls002-(100*200)', 100, 200 UNION ALL
  13. SELECT 'ls002-(200*350)', 200, 350 UNION ALL
  14. SELECT 'ls002-(220*320)', 220, 320
  15. ;with t
  16. as
  17. (
  18. select a0,a1,
  19. substring(a1, 1, charindex( '-',a1) -1) as b1,
  20. a2,a3
  21. --substring(a1,charindex('(',a1)+1, charindex('*',a1)-charindex('(',a1)-1) as b2,
  22. --substring(a1,charindex('*',a1)+1, charindex(')',a1)-charindex('*',a1)-1) as b3
  23. from a
  24. ),
  25. tt
  26. as
  27. (
  28. select t.a0,
  29. t.a1,
  30. b.b1,
  31. row_number() over( partition by t.a1
  32. order by abs(t.a2-b.b2) + abs(t.a3 - b.b3)) as rownum
  33. from b
  34. inner join t
  35. on b.b1 like t.b1 + '%'
  36. )
  37. select a0,b1 as a1
  38. from tt
  39. where rownum = 1
  40. /*
  41. a0 a1
  42. 0 ls001-(920*120)
  43. 1 ls002-(220*320)
  44. */

发布了416 篇原创文章 · 获赞 135 · 访问量 94万+

猜你喜欢

转载自www.cnblogs.com/lonelyxmas/p/12020059.html
今日推荐