|< < 8 > >|

Query Execution Plans

Schema

create table author( author_id int not null primary key, name varchar not null, birth_date date not null );

Query

What is Kurt Vonnegut Jr.'s birthday?
select birth_date from author where name = 'Kurt Vonnegut, Jr.'

|< < 8 > >|