数据库中两张表,tab1(id,name),tab2(id,count,paytime),两表以id作为外键进行关联。
发布网友
发布时间:2022-09-20 19:36
我来回答
共1个回答
热心网友
时间:2023-11-07 00:16
select tab1.id,tab1.name,tab2.count,tab2.paytime
from tab1,tab2 where tab1.name='团购月饼' and tab2.count>5
order by paytime desc追问一共让输出10条,你的语句没有表示出来。