Multiple choice technology databases

Which is the most commonly used type of table?

  1. Clustered

  2. Partitioned

  3. Regular

  4. Index organized

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Regular tables are the default and most widely used table type in databases. They're simple, well-understood, and suitable for most use cases. Clustered tables (physically ordered by index) and index-organized tables are specialized for specific performance scenarios. Partitioned tables are used for very large datasets.