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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inline view

Status
Not open for further replies.

AtomicWedgie

IS-IT--Management
Jul 10, 2002
227
NL
Hello,

when I create an inline view in a select statement, is that view then stored in the database somewhere?

Atomic Wedgie
 
Do you mean a derived table.
No.

======================================
Cursors are useful if you don't know sql.
DTS can be used in a similar way.
Beer is not cold and it isn't fizzy.
 
If you're talking about something like the following, then I'd have to say no:

SELECT * FROM
(SELECT col1,col2
FROM tbl
WHERE col1<>3) AS InlineView
WHERE InlineView.col1>3

If you want it to, use a temporary table.

Adam
while(ignorance==true){perpetuate(violence,fear,hatred);life=life-1};
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top