select * from (select row_number()over(order by Server_no desc) as rownum,Server_no,Game_Name,Server_name from T_GameServer_List where IS_DELETE = ‘N‘ and Game_name like ‘%q%‘)as t where t.rownum > #{condtion.offestStart} and t.rownum <= #{condtion.offestEnd}
时间: 2024-12-14 18:07:13