SELECT ApplyID FROM T_ProgramModifyApply LIMIT 5;
为什么说5的附近有语法错误呢?
LIMIT 是mysql的写法
mssql的写法是 SELECT TOP 5 ApplyID FROM T_ProgramModifyApply
你什么数据库啊