Home >Backend Development >PHP Tutorial >php连接mysql查询的问题(新手)

php连接mysql查询的问题(新手)

WBOY
WBOYOriginal
2016-06-23 13:52:351040browse

假如有2个属性 用户账号   用户密码
数据库的数据是这样的
用户账号   用户密码
A                 1111
B                  2222
C                  3333
我可以通过where      用户账号 = B ,再搜索就能把这一行的数据都能获取。
但是我想在where      用户账号 = B ,在特定仅仅获取这一行的用户密码就好了,那用什么函数。
 


回复讨论(解决方案)

想要获取唯一行的属性那你要确保每一行都是唯一的才行,要不然肯定不能。

select 后面不是字段列表吗?
你要那个字段就填那个字段

select * from tb where  用户账号 = B limit 1

select * from tb where  用户账号 = B limit 1



1是相当于下标吗

自己去mysql workbean试试就行了......

select 用?密? from table where 用???=B; 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn