ÎÒµÄsqlÓï¾äÊÇ£ºselect top 10 * from tabA order by info_id;È»ºó¾Í ERROR 1064(42000):You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '10 * from tabA order by info_id' at line 1
¸Õ¸Õ½Ó´¥MySql£¬Ó¢ÓïÒ²²»ºÃ£¬Ï£Íû¸÷λ¸ßÊÖÖ¸µã¹þ£¬µ½µ×ÊÇÄÄÀï³ö´íÄØ£¿select * from tabA order by info_id limit 10 mysql²»Ö§³ÖTOP ¿ÉÒÔÔÙ½ÌÎÒÔõô½µÐòô£¿
SQL code: --½µÐò select * from tabA order by info_id desc limit 10;