select user.*,
store.storeId,store.storeName from
user JOIN store ON user.storeId=store.storeId
where email=? and password=?


这是我加入表时想到的mysql查询,但我无法获取查询正在做什么,但无法获取。

最佳答案

从用户表中选择所有内容。

select user.*,


从商店表中选择storeId和storeName。

store.storeId,store.storeName


将2个表连接在一起,其中用户表中的storeId = =到store表中的storeId,其中email和pass =他们在输入中键入的内容

from
user JOIN store ON user.storeId=store.storeId
where email=? and password=?

关于mysql - 我试图了解此查询的意思是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49568370/

10-12 13:44