同一个功能但是在两个数据库中的不同用法
这个是sql中的语句
select top 5 cid,workid from agents
这个是mysql中的语句
SELECT * FROM lnaccumulation.callslog limit 5
这个是sql中的语句
select top 5 cid,workid from agents
这个是mysql中的语句
SELECT * FROM lnaccumulation.callslog limit 5
select * from model_product limit 5 order by id desc wrong
select * from model_product order by id desc limit 5 right