1

What question should I send to database, to check how many rows my table contains?

Preet Sangha
  • 64,563
  • 18
  • 145
  • 216
Ariel Grabijas
  • 1,472
  • 5
  • 25
  • 45

1 Answers1

5
SELECT COUNT(*) FROM table_name;
WojtekT
  • 4,735
  • 25
  • 37