我需要社区帮助来深入了解这一点......提前致谢。
现在哪种方法会更好地表现 -
根据cust_type字段更新150条记录,如
更新用户设置 is_deleted = 1其中cust_type = 2;
首先通过select语句获取150个主键,如
选择cust_id 来自useres,其中cust_type = 2
然后更新这些主键,如
更新用户设置is_deleted = 1其中cust_id in(1,2,3,4 ....,150);
首先通过select语句获取150个主键,如
选择cust_id 来自useres,其中cust_type = 2
然后逐个更新这些主键,如update users set is_deleted=1 where cust_id=1
,然后更新,依此类推。