本文介绍了在SQL中插入重复值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
尝试找到一种简单的方法在表的两列中插入一些重复值,类似于R
-
rep
函数例如,我需要插入两个值(巧克力和香草,各4次),并且需要插入4种重复两次的值,例如--
flavor_type schedule_type
chocolate weekly
chocolate monthly
chocolate quarterly
chocolate yearly
vanilla weekly
vanilla monthly
vanilla quarterly
vanilla yearly
推荐答案
可以使用cross join
:
select *
from (values('chocolate'), ('vanilla')) flavor(flavor_type)
cross join (values('weekly'), ('monthly'), ('quarterly'), ('yearly')) schedule(schedule_type)
输出:
flavor_type schedule_type
----------- -------------
chocolate weekly
chocolate monthly
chocolate quarterly
chocolate yearly
vanilla weekly
vanilla monthly
vanilla quarterly
vanilla yearly
这篇关于在SQL中插入重复值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!