구문:
declare continue handler for sqlstate 'error code value' set 변수 = 변수 값
예:
create procedure p_insertDome() begin declare continue handler for sqldate '42S02' set @x=1; insert into userinfo2(uid,name,password)values('1','demo','123456'); insert into employ('empno','date')values('2220','1993-12-14'); end; $$;
데이터가 첫 번째에 나타나는 경우 명령문 테이블이 존재하지 않는 경우에는 다음 명령문 실행에 영향을 미치지 않습니다.
위 내용은 MySQL Advanced 4 - Custom Conditions and Processing의 내용이며, 더 많은 관련 내용을 보시려면 주의하시기 바랍니다. PHP 중국어 홈페이지(www.php.cn)!