DuplicatesDigression: Metadata of query resultsExample 1
create table book(
book_id int not null primary key,
author_id int references author,
title varchar not null,
int year check(year > 0)
);
What is the metadata for this table?
|