0

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

user3785340
  • 25
  • 1
  • 7

1 Answers1

0

You can use count(*) to get count of records in your table,as given below

Select count(*) from your_table
mahesh
  • 1,311
  • 1
  • 13
  • 26