채택완료

new.php에서 원하는 게시만 몇개만 선택이 가능할까요??

2018-02-20 (화) 14:02:23 1,928

지금 현재

A,B,C,D,E 게시판이있는데

A,B만 새글로 땡겨오고싶어요(코멘트제외)

근데 게시판 선택은

Copy
$sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b, {$g5['group_table']} c where a.bo_table = b.bo_table and b.gr_id = c.gr_id and b.bo_use_search = 1 ";

여기서 바꿔야하는것같기도한대 혹시 관련 조언을 해주실 수 있나요?

추가)코멘트는 안가져오는 부분도..작성글만 ㅠ

|

답변 1개 / 댓글 3개

채택된 답변
+20 포인트

테이블 'A', 'B' 

가 bo_table 의 내용이라고 가정하고

Copy
$sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b, {$g5['group_table']} c where a.bo_table = b.bo_table and b.gr_id = c.gr_id and b.bo_use_search = 1

and a.bo_table in ('A','B') 

and b.wr_is_comment = '0'

";

답변에 대한 댓글 3개

2018-02-20 (화) 14:34:43
혹시 ㅠ안되서그러는데 틀린부분이 있나요..?ㅠ
[code]
$sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b, {$g5['group_table']} c where a.bo_table = b.bo_table and b.gr_id = c.gr_id and b.bo_use_search = 1 and a.bo_table in ('g5_write_coin_01','g5_write_coin_new2') and b.wr_is_comment = '0'";
[/code]
$sql_common = " from {$g5['board_new_table']} a, {$g5['board_table']} b, {$g5['group_table']} c
where a.bo_table = b.bo_table
and b.gr_id = c.gr_id
and b.bo_use_search = 1
and a.bo_table in ('coin_01','coin_new2') and b.wr_is_comment = '0'";
2018-02-20 (화) 14:46:27
아!!
테이블명이구나

a.bo_table in ('coin_01','coin_new2') "; 이렇게 하니깐 되네요!ㅠㅠㅠ감사합니다

답변을 작성하려면 로그인이 필요합니다.