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