SESSION NAME: Views.

QUESTION NAME: Views - 7.


TABLE DESCRIPTION:

Create a VIEW as your RegistrationNumber_07.

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

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

1. SupplierID
2. SupplierName
3. ContactName
4. City

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 SupplierID, SupplierName, ContactName, City FROM RA1511003010255_07;