제가
$sql = "CREATE TABLE $tblname "; $sql .= " (idx serial primary key,"; $sql .= "thread integer not null,"; $sql .= "ref integer not null,"; $sql .= "subject char(100) not null,"; $sql .= "content char(30000),"; $sql .= "name char(10) not null,";... 생략
부분으로 테이블을 생성 시켰습니다.
그 후에
select count(idx) from discuss where ref = 0
부분으로 검색을 할때 자꾸 쿼리 부분이 에러가 나서요^^*
Warning: ifx_query(): Prepare fails (E [SQLSTATE=42 000 SQLCODE=-201]) in d:\laci\test.php on line 4 이렇게 나는데요^^*
이유를 알수가 없습니다.. 아시는 분은 좀 알려주세용.. ^^*
select count(idx) from discuss where thread = 0 부분으로 ref를 thread 로 바꾸면 되는데 ref부분은 왜않될까요??
|