0% found this document useful (0 votes)
8 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)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
8 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)
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
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