create or replace procedure pro1
(
    strid in varchar2--
)
as
begin
update table1 set table1 .性别=‘男’where table1.id in (strid );
strid =“'11','121','13'”的形式传入,但到update后报错了,单独执行update table1 set table1 .性别=‘男’where table1.id in ('11','121','13') 没问题
待受教