0% found this document useful (0 votes)
15 views1 page

Location

This document defines a database table called "location" with 5 columns - location_id as the primary key which is a number data type with size 3, location_name as a varchar with size 25, street as a varchar with size 25, city as a varchar with size 25, and country_id as a char with size 2.

Uploaded by

for_books
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Location

This document defines a database table called "location" with 5 columns - location_id as the primary key which is a number data type with size 3, location_name as a varchar with size 25, street as a varchar with size 25, city as a varchar with size 25, and country_id as a char with size 2.

Uploaded by

for_books
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create table location( location_id location_name street city country_id number (3), varchar (25), varchar (25), varchar

(25), char (2));

You might also like