|< < 8 > >|
create table author( author_id int not null primary key, name varchar not null, birth_date date not null );
What is Kurt Vonnegut Jr.'s birthday? select birth_date from author where name = 'Kurt Vonnegut, Jr.'
select birth_date from author where name = 'Kurt Vonnegut, Jr.'