我在SQL中遇到一个问题,我使用Microsoft SMSS 17.2,因为我被迫。
我遇到了问题:在Categories表中,添加一个名为Products的列,其中所有属于给定类别的产品都将在之后写入。
使用Northwind数据库。
有问题因为在Microsoft SQL中不存在Group_concat。
试过这样:
use Northwind
Alter table Categories
Add Products nvarchar(40)
update Categories
set Products=p.ProductName
from Categories
join Products p on p.CategoryID=Categories.CategoryID
但它只添加了一个产品名称
这不是其他问题的重复bc我需要从其他表中插入数据,而我只是不知道怎么做。