我有一个配置单元表,它是基于一个数值(比如count)按顺序排序的。
fruit count
------ -------
apple 10
orange 8
banana 5
melon 3
pears 1
总数是27。我需要把它分成三部分。所以计数的前1/3,即1到9是1,10到18是第二,19到27是第三。我想我需要做些推拉窗的工作。
fruit count zone
------ ------- --------
apple 10 one
orange 8 two
banana 5 three
melon 3 three
pears 1 three
你知道怎么做吗
1条答案
按热度按时间im9ewurl1#
以sql方式: