1樓:匿名使用者
這個錯誤資訊是因為,你的$result中沒有結果,而是一個查詢失敗的false返回值。
可能的原因是admin是mysql的關鍵字。 在sql語句的admin兩邊加上`這個符號,就是tab鍵上面,esc鍵下面那個鍵。 如果還有問題的話,請繼續追問,我很樂意幫你解決這個問題。
2樓:言南絮
上面的程式**改為:
產品編號
產品分類
產品貨號
<?
$sql = "select 產品.pid,分類表.sname,產品.
name from 產品,分類表 where 產品.sort=分類表.sid order by 產品.
pid"
$rst = @new com("adodb.recordset")$rst->open($sql,$con,1,3)while(!$rst ->eof)
$con->close();?>
通過php判斷某個使用者是否存在的**如下:
//拆分發來的資訊得到會員卡號
$arry=explode("+",$form_content);
$memberid =$arry[1];
//連線資料庫
$link=mysql_connect(sae_mysql_host_m.':'.sae_mysql_port,sae_mysql_user,sae_mysql_pass);
if($link) else
}else
mysql_close($link);}
sql多表連線查詢問題,sql 兩表連線查詢的問題
可以,下面的sql文你可以參考一下 select a.id,b.type,b.prid idfrom a a inner join c c on a.id c.id left join b b on a.type b.type and b.prid id c.prid id 完全可以實現,使用左外連...
求此SQL表連線查詢,新手勿入
select sum columns2 column1 from select 姓名 as column1,回答數 as columns2 from a union select 姓名 as column1,提問數 as columns2 from b c group by column1 兄弟,我...
用php將mysql的表查詢出來,該怎麼寫,用來考二級mysql的
select from b where b表字段 in select a表字段 from a 其中in可根據需要用其他如like等替代 select from b where id in select id from a php中mysql一條sql語句查詢出所有符合條件的資料,該怎麼寫?您好,不知...