묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원관리 디비 퀴리문에 대한 문의?
2005.05.23 21:35
$member_data=mysql_fetch_array(mysql_query("select * from $member_table where no='$no'"));
두번째 줄인가 있는데...
테이블을 두개를 동시에 불러오게 하려면 어떻게 해야 합니까?
예전에 어느분이 a와 b로 불러오게 하면 된다고 하던데...
즉 다시 말해서...
$member_data=mysql_fetch_array(mysql_query("select * from $member_table a, $members_table b where a.no='$no' b.no='$no'"));
뭐 이런식으로 한다고 하던거 같은데...
어떻게 하는지 알려주시기 바랍니다.
두번째 줄인가 있는데...
테이블을 두개를 동시에 불러오게 하려면 어떻게 해야 합니까?
예전에 어느분이 a와 b로 불러오게 하면 된다고 하던데...
즉 다시 말해서...
$member_data=mysql_fetch_array(mysql_query("select * from $member_table a, $members_table b where a.no='$no' b.no='$no'"));
뭐 이런식으로 한다고 하던거 같은데...
어떻게 하는지 알려주시기 바랍니다.
같은 구조를 가지고 있다면
select a.name, a.user_id, b.name as name2 from table1 as a, table2 as b where a.no=b.no
이런식으로 하셔야 합니다.