Search code examples
mysqlrecordscounting

How do I make a Record in MYSQL


How do I make a counting Record in MySQL?


Solution

  • If you need to count the numbers of rows in MySQL, you would simply use COUNT(*). Take a look at the official documentation here.

    The query would look like this.

    SELECT COUNT(*) FROM your_table;