The document describes the schema for tables related to an online bookstore database including tables for book details, category details, order details, temporary details, user authentication, user profiles, orders, and order history. The tables track information like book IDs, titles, authors, categories, prices, quantities, orders, users, and order details. Field names and data types are specified for each table.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
204 views2 pages
Shopping Cart Tables
The document describes the schema for tables related to an online bookstore database including tables for book details, category details, order details, temporary details, user authentication, user profiles, orders, and order history. The tables track information like book IDs, titles, authors, categories, prices, quantities, orders, users, and order details. Field names and data types are specified for each table.
UserName varchar2(30), primary key Password varchar2(15), not null FirstName varchar2(10), not null MiddleName varchar2(10) LastName varchar2(10), not null Address1 varchar2(40), not null Address2 varchar2(40) City varchar2(20), not null State varchar2(20), not null PinCode varchar2(10), not null Email varchar2(25), not null Phone varchar2(12), not null