|< < 7 > >|

Duplicates

Digression: Metadata of query results

select * from book

What is the metadata for this query result?

  • Column names: book_id, author_id, title, year
  • Column types: int, int, varchar, int
  • Column positions: 0, 1, 2, 3

"Missing" metadata:

  • Table name
  • Primary key
  • Foreign key

|< < 7 > >|