SQL Server中用UPDATE更新一表一行的多列,应该怎么写?

2024年11月15日 20:41
有1个网友回答
网友(1):

update 表 set 列1 = XX,列2 = xx,列3 = xx where 主键 = 你要定位的值 用逗号相连,如下所示: update Students set SGrade=3,SSex=0