You are on page 1of 12

Write the following sql commands needed on each item.

Create a database which is the LIBRARY name you visited.

CREATE DATABASE `Book One`;

Create a table named “books” with the following field information.

CREATE TABLE books (

book_title VARCHAR(255),

type_of_books VARCHAR(255),

author VARCHAR(255),

language VARCHAR(255),

publication_date DATE

);

You might also like