• 2020-09-02
mysql如何查询前20条记录

mysql查询前20条记录的方法:1、执行【select * from no_primary_key order by id limit 10;】命令查看;2、执行【show create table......

11