Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySQL でカウント レコードを作成するにはどうすればよいですか?
MySQL で行数をカウントする必要がある場合は、単純にCOUNT(*). こちらの公式ドキュメントをご覧ください。
COUNT(*)
クエリは次のようになります。
SELECT COUNT(*) FROM your_table;