// load the data for the blog posts

Create a table for a lexical entity

Create table first_name(fName varchar(50) primary key); Insert into first_name values( 'Marge');  Insert into first_name values( 'Homer');  Insert into first_name values( 'Bart');  Insert into first_name values( 'Lisa');  Insert into first_name values( 'Maggie');  Select * from first_name;