SESSION NAME: Views.

QUESTION NAME: Views - 5.


TABLE DESCRIPTION:

Create a VIEW as your RegistrationNumber_05.

For example your registration number is
RA1511003010255 the create a view as RA1511003010255_05.

The view should be created for locations table for the
following fields:

1. location_id
2. street_address
3. country_id

After creating view for the above mentioned fields display
the view.

Hint:

1. Create a view with specified name.
2. After creating the view delete the lines in the code editor
3. Display the view (select * from viewname)

CODE:

SELECT location_id, street_address, country_id FROM RA1511003010255_05;