Which is the most memory intensive SQL query: select, update or insert? and why?
The database consists of a two simple tables that are independent of each other
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
This really depends on what is being requested in the query and the size of each table. A select all
will consume whatever memory required to load records in that table. |
|||||
|
|
Hard to say anything without knowing the actual statements but selects, especially joins and resultsets with many records are probably use more memory |
|||
|
|
SELECT "Constant"is not as intensive asINSERT INTO table SELECT * FROM largetable, anotherlargetable;) – Jacob Aug 19 '11 at 20:24