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