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

DML

Status
Not open for further replies.

PravinBand

Programmer
Nov 16, 2000
6
AU
Hi,

Who is agree with me that select is not a DML, and why?

My thinking is, as Select is not modifying data in table, and DML denotes set of statements, which can modify data in table.

Thanks.

Pravin
 
DML -> Data Manipulation Language

not Modifying...



-=-=-=-=-=-=-=-=-
For ease of reading, any posted CODE should be wrapped by [ignore][COLOR][/COLOR] and
Code:
[/ignore] tags.

Ex:
Code:
SELECT 1 from sysobjects

 
Pravin,

I think our friend JeanNiBee has pointed it out nicely. Traditionally any sql type statement such as select/insert/update/delete is considered a Data manupulation Language. In contrast anything which affects the underlying structure is DDL or Data Definition Language (create/alter/drop table etc). Then we end of with remaining stuff which are compiled objects (check constraints, defaults, rules, stored procedures, triggers and views).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top