请求一条SQL查询语句

2025-03-22 15:42:25
推荐回答(2个)
回答1:

select * from pe_article where hits >= 100
and updatetime <=sysdate - 30

回答2:

select *
from pe_article
where hits >= 100
and updatetime >= sysdate - 30