mysql查詢數據,如何查尋mysql中一個表有多少條記錄?
用count函數就可以查看。 比如表名叫test。 要查詢表中一共有多少條記錄 select count(*) from test;如果按條件查詢的話,就正常使用where條件即可 select count(*) from test where id=1;
用count函數就可以查看。 比如表名叫test。 要查詢表中一共有多少條記錄 select count(*) from test;如果按條件查詢的話,就正常使用where條件即可 select count(*) from test where id=1;