Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

select - SQL question

Status
Not open for further replies.

csvideo

Programmer
Oct 19, 2001
74
0
0
BB
How can I select records from a local view the way I can select them from a table?

Example of select from a customer table :-

SELECT * FROM customer

I need to select from local View.

 
Hi

You will have to do the same thing. There is no difference.
if customerview is a view of customer then you can
Select * from customerview.

Hope this helps

AjoyK
 
And the same is true of remote views as well. Except, of course, that you need some sort of connection to set up a remote view. The whole point of views is to create something that you can use just like a table.

Dave Dardinger
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top