Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Sample Tables to be downloaded: create table authors (au_id varchar(11) not null, au_lname varchar(40) not null, au_fname varchar(20) not null, phone char(12) not null, address

image text in transcribedSample Tables to be downloaded: create table authors (au_id varchar(11) not null, au_lname varchar(40) not null, au_fname varchar(20) not null, phone char(12) not null, address varchar(40) null, city varchar(20) null, state char(2) null, country varchar(12) null, postalcode char(10) null); create table publishers (pub_id char(4) not null, pub_name varchar(40) null, city varchar(20) null, state char(2) null); create table titleauthor (au_id varchar(11) not null, title_id varchar(6) not null, au_ord int null, royaltyper int null); create table titles (title_id varchar(6) not null, title varchar(80) not null, type char(12) not null, pub_id char(4) null, price number null, advance number null, total_sales int null, notes varchar(200) null, pubdate date not null, contract int not null ); create table stores (stor_id char(4) not null, stor_name varchar(40) null, stor_address varchar(40) null, city varchar(20) null, state char(2) null, country varchar(12) null, postalcode char(10) null, payterms varchar(12) null); 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Sams Teach Yourself Beginning Databases In 24 Hours

Authors: Ryan Stephens, Ron Plew

1st Edition

067232492X, 978-0672324925

More Books

Students also viewed these Databases questions

Question

How to solve maths problems with examples

Answered: 1 week ago