Exam (elaborations)
Introduction to Relational Databases Challenge 1.2 (WGU)
- Course
- Institution
1.2 SINGLE TABLE CONSTRUCTION The following CREATE TABLE statement creates a table called 'company' that consists of the company_id as the primary key, the company_name, and the address. CREATE TABLE company( company_id INT PRIMARY KEY company_name VARCHAR (100), address VARCHAR (100) ); I...
[Show more]