Bnp VO OA Interview Question: Students Table (SQL)

14 Views
No Comments

Students Table

Table T1 with 3 columns:

  • name
  • class
  • grade

This is a very basic SQL table-structure question. The prompt defines table <code>T1</code> with three columns: <code>name</code>, <code>class</code>, and <code>grade</code>. The key is to understand the schema first and then write the appropriate query once the actual requirement is provided. These problems usually test simple <code>SELECT</code> usage, column projection, and reading table definitions carefully.

END
 0