我想在我的表 tblSubscriptions 中插入数据,我只想使用一个插入语句。我将为用户表中的每个 userId 插入数据。以下 SQL 不起作用。
Insert tblSubscriptions (UserID, ProductID, isACtive, SubscriptionDays, Price, MonthlyPrice, ProductType, CurrencyID)
Values ((Select userID From tblUser where SubscriptionType in(1, 0, null)), 7, 1, 0, 0, 0, 30, 1)
如何使用一个插入语句来做到这一点,即没有游标。