Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Insert with where clause
Sat, May 15 2010 12:00 PMPermanent Link

Hershcu Sorin

Hello

Why the Insert statement missing the where clause.

I mean something like:

INSERT INTO <TableName>
[(<ColumnName> [,<ColumnName>])]
VALUES (<Value> [,<Value>])|
[WHERE <FilterCondition>]
<QueryExpression>

Thanks
Sorin

Mon, May 17 2010 3:58 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Sorin,

<< Why the Insert statement missing the where clause.  >>

INSERT statements don't have a WHERE clause.

Are you thinking of:

INSERT INTO MyTable SELECT...WHERE..

?

--
Tim Young
Elevate Software
www.elevatesoft.com
Image