สอบเซียน sql วีธีการ query หาจำนวน post ทั้งหมด ของ แต่ละ category ครับ
<CENTER><B>บทความทั้งหมด</B></CENTER>
<hr>
<div align=right><FONT SIZE=2>มีจำนวน $a บทความ</FONT></div>
<TABLE width='100%' border='0' cellpadding='0' cellspacing='0'>
แบบนี้ป่าวไม่รู้อ่ะ แต่อยากช่วยอ่ะค่ะ
Date :
2009-08-30 10:41:28
By :
gangzaclub
$query_Recordset1 = "SELECT * FROM questions ORDER BY id_q DESC";
$Recordset1 = mysql_query($query_Recordset1, $connect) or die(mysql_error());
while($show=mysql_fetch_array($Recordset1)){
$state="select * from state where id='$show[id_q]' ";
$query=mysql_query($state);
$show2=mysql_fetch_array($query);
Date :
2009-08-30 10:46:49
By :
gangzaclub
http://www.ulbuzz.com/c65ILxo2X6
ลองโหลดตัวนี้มาใช้ค่ะ ช่วยได้เย่อะ
Date :
2009-08-30 20:59:29
By :
gummezaka
http://www.heidisql.com/
ตัวนี้สุดยอดกว่า ผมคอนเฟิร์ม เพราะผมใช้มาแล้ว 3 ตัว
คือ mysql front, heidisql, Navicat แต่ละตัวจะมีข้อดีต่างกันครับ
ตัวที่ check query ดีสุดคือ heidisql
ตัวที่ import และ export ดีสุด คือ mysql front
ตัวที่ จัดการแล้ว support กะ excel ที่สุด คือ Navicat
Date :
2009-08-30 21:57:38
By :
DownsTream
แถมอีกตัวที่อาจจะมองข้ามไป phpMyAdmin
Date :
2009-08-30 22:20:58
By :
panyapol
Date :
2009-08-30 22:50:32
By :
gummezaka
select a.category_name,count(isnull(b.id,0)) as Cnt_post,count(isnull(c.id,0)) as Cnt_Topic
from webboard_category a
left outer join webboard b
on a.id = b.category
left outer join webboard_reply c
on b.id = c.topic_id
group by a.category_name
ลองดูนะครับ ว่าใช้ได้หรือป่าว
Date :
2009-08-31 08:29:10
By :
taobsd
ขอบคุณพี่ๆมากนะครับ
Date :
2009-08-31 11:36:54
By :
netlic
Load balance : Server 03