SQL删除一个表的前几行(如删除日记记录)

delete ad from ad AS a ,(select top 1 id from ad) AS b where a.id =b.id
原文地址:https://www.cnblogs.com/liufei88866/p/960272.html