2016-11-30 51 views
-1
mysql> select * from newschema.users where username = 'test'; 
    +----------+----------+ 
    | username | password | 
    +----------+----------+ 
    | test  | lolol | 
    +----------+----------+ 
    1 row in set (0.00 sec) 

因此存在名爲'test'的用戶名。現在我該如何從密碼列中獲得「lolol」值?mysql - 對於列中包含字符串的行,從另一列中獲取字符串

(很抱歉,如果我的英語不好,我不知道如何短語得當)

+2

嘗試使用關於sql的簡單教程select – scaisEdge

回答

0

這是一個非常簡單的用例爲select聲明 - 你在選擇列表中指定一列,並使用其他where子句中:

SELECT password 
FROM newschema.users 
WHERE username = 'test' 
+0

它工作。謝謝 –

0
mysql> select password from newschema.users where username = 'test'; 

試試這個。它選擇密碼列。

相關問題