I'm a MySQL beginner. Does anybody know what the sql statment is to read how many recods their are in a MySql database? I don't want to display the records i just want to know how many records their are in my table.
Thanks
DJ
I'm a MySQL beginner. Does anybody know what the sql statment is to read how many recods their are in a MySql database? I don't want to display the records i just want to know how many records their are in my table.
Thanks
DJ
You can use count(*)
to get count of records in your table,as given below
Select count(*) from your_table