The structure is as follows:
SELECT column1, column2, column3 FROM view
e.g If your view consisted of the following columns
Id, FirstName, LastName
and the view was called vw_AddressBook,
then the SQL Statement you need to write is:
SELECT Id, FirstName, LastName from vw_AddressBook
Should retrieve The Id, FirstName and LastName for all records in the view. If you wanted for example to omit the Id column from your results, you would write the following SQL
Statement:
SELECT FirstName, LastName from vw_AddressBook
Hope this helps