qa 라는 테이블과 news 라는 테이블의 최근 날짜별 추출하는 쿼리문입니다.
reg_date 필드에는 날짜가 기록되어있습니다.
$query = "select 'qa' as bbs, code, title, reg_date from qa union all select 'news' as bbs,code, title, reg_date fromnews order byreg_date desc limit 30";
$result = mysql_query($query);
$result = mysql_query($query);
while ($row = mysql_fetch_array($result))
{
echo $row[bbs]." , ".$row[code]." , ".$row[title]." , ".$row[reg_date]."
";
}
{
echo $row[bbs]." , ".$row[code]." , ".$row[title]." , ".$row[reg_date]."
";
}
반응형
'홈페이지 제작 > PHP, MySQL' 카테고리의 다른 글
[PHP] 세금계산서 공급가액, 세액 계산공식 (0) | 2008.11.21 |
---|---|
[MySQL] 쿼리문으로 날짜계산 (0) | 2008.10.10 |
[MySQL] NULL값 검색하기 (0) | 2007.05.16 |
[PHP] 웹페이지의 필요한 내용만 가져오는 클래스 (게시판 긁어오기) (0) | 2007.03.28 |
[PHP] 이미지 워터마크 구현 (0) | 2007.03.07 |