Question: Q 1 . Using phpMyAdmin in xampp, create a simple database schema for a bookstore management system. This database will include tables for storing information

Q1. Using phpMyAdmin in xampp, create a simple database schema for a bookstore management system. This database will include tables for storing information about books, authors, publishers, and customers. Here's the schema specifications:
Books Table:
book_id: INT (Primary Key)
title: VARCHAR
author_id: INT
publisher_id: INT
genre: VRCHAR
publication year: YEAR
price: DECIMAL
quantity_available: INT
Authors Table:
author_id: INT (Primary Key)
author_name: VARCHAR
Publishers Table:
publisher_id: INT (Primary Key)
publisher_name: VARCHAR
location: VRCHAR
Customers Table:
customer_id: INT (Primary Key)
customer_name: VARCHAR
email: VARCHAR
phone_number: VARCHAR
address: VARCHAR
Orders Table:
order_id: INT (Primary Key)
customer_id: INT
order_date: DATE
total_amount: DECIMAL
Insert 3 tuples(rows) in each tabe please solve
Q 1 . Using phpMyAdmin in xampp, create a simple

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!