php 中如何只取数据库中字段名下的一条数据
如: id name 0 张三 1 李四 如何只取到 “张三” 数据库查询不想通过ID去查 我想在循环的时候取到name下的一个值
如: id name 0 张三 1 李四 如何只取到 “张三” 数据库查询不想通过ID去查 我想在循环的时候取到name下的一个值
答案:SELECT id, name FROM xxx WHERE name = "张三"
你的意思是 SELECT id, name FROM xxx 的话,就这样取:
$result = mysql_fetch_array($query,$result_type)
while($result)
{
if ($result['name'] =="张三") {。。。}
}
其他:select * from 表名 where name="张三" select * from 表名 where name="张三" ;