select user.*,
store.storeId,store.storeName from
user JOIN store ON user.storeId=store.storeId
where email=? and password=?
这是我在加入表时想到的mysql查询但是我无法得到我的查询正在做什么我无法得到它。
答案 0 :(得分:0)
从用户表中选择所有内容。
select user.*,
从商店表中选择storeId和storeName。
store.storeId,store.storeName
将两个表连接在一起,其中storeId从user table = to storeId在store表中,其中email和pass =他们在输入中输入的内容
from
user JOIN store ON user.storeId=store.storeId
where email=? and password=?