如果表中存在值(非主键),则返回表id(主键)?

时间:2014-01-14 06:06:36

标签: php mysql

元素由id(主键)或任何其他替代方法,我使用MySQL_num_rows()来检查值的存在,它工作正常如何更改列的指定行值而没有id(主键)行。如果可能,请提供一些代码。

1 个答案:

答案 0 :(得分:0)

mysql_fetch_assoc返回结果数组,包括您通过查询获得的所有列。你需要做的是,

while ($row = mysql_fetch_assoc($result)) 
{
echo $row["primary_key"];
echo $row["other_value"];

if($row["other_value"]==something)
{
    //Update the table with $row["primary_key"]
}

}