많은 방법들이 있겠지만, 가장 널리 쓰이는 2가지 방법을 정리하면
1. SQL
create table if not exists 'tablename'
2. Function
function table_exist_check($table,$handle)
{
$result = mysql_query("SHOW TABLES LIKE '{$table}'",$handle);
$row = mysql_fetch_assoc($result);
if ( $row ) return true;
return false;
}
table_check3('tablename',$dbconn);
1. SQL
create table if not exists 'tablename'
2. Function
function table_exist_check($table,$handle)
{
$result = mysql_query("SHOW TABLES LIKE '{$table}'",$handle);
$row = mysql_fetch_assoc($result);
if ( $row ) return true;
return false;
}
table_check3('tablename',$dbconn);
'DB > MySQL' 카테고리의 다른 글
Error Code: 3 - Error writing file '/tmp/xxxxxxx (Errcode: 28) (0) | 2015.08.14 |
---|---|
mysql Errcode: 28 (0) | 2014.09.27 |
MySQL 서비스 등록 (0) | 2008.10.22 |
MySQL 에서 euc_kr.conf 이 없다고 할 때 (0) | 2007.07.16 |
mysql table 필드 타입 별 스토리지 사용량 및 최대값 (0) | 2007.05.23 |