hello all...im need help... i want to know total line on my database tabel..how to know that? im very newbie on mysql...
The following command will tell you the total number of rows in a table, replace table_name with your real table name SELECT COUNT(*) FROM table_name Code (markup):