묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
중복필드 있을 때 중단않고 나머지 쿼리실행하기는?
2004.07.22 11:18
예를 들어 다음의 쿼리문을 포함한 php 파일을 실행하려는데요..
$query="alter table zetyx_member_table add point3 int(20) default '0' not null)";
mysql_query($query, $connect);
$query="alter table zetyx_member_table add point4 int(20) default '0' not null)";
mysql_query($query, $connect);
$query="alter table zetyx_member_table add point5 int(20) default '0' not null)";
mysql_query($query, $connect);
$query="alter table zetyx_member_table add point6 int(20) default '0' not null)";
mysql_query($query, $connect);
벌써 point3 필드가 있을 경우 중단이 되더라구요
중단을 하지 않고 에러 출력 후에 바로 나머지 쿼리문을 계속 실행하게 하려면 어떻게 하나요?
$query="alter table zetyx_member_table add point3 int(20) default '0' not null)";
mysql_query($query, $connect);
$query="alter table zetyx_member_table add point4 int(20) default '0' not null)";
mysql_query($query, $connect);
$query="alter table zetyx_member_table add point5 int(20) default '0' not null)";
mysql_query($query, $connect);
$query="alter table zetyx_member_table add point6 int(20) default '0' not null)";
mysql_query($query, $connect);
벌써 point3 필드가 있을 경우 중단이 되더라구요
중단을 하지 않고 에러 출력 후에 바로 나머지 쿼리문을 계속 실행하게 하려면 어떻게 하나요?