delete is used to destroy a single object. It will call the destructor of the object and free the memory. delete[] is used to free the memory which was allocated using new []. delete [] will call the destructor for each object in array and free the memory. ________________ As far as I can tell, they aren't delete bit different.
What is the difference between delete and format?
delete command would delete selected word,line, paragraph or even sheet. Whereas delete sheet command would delete the whole sheet
i don't know the difference but what i know is ... deleted file from MS-DOS is never go to the recycle bin. Thanks !
The backspace key deletes to the left of the cursor, and the delete key deletes to the right of the cursor.
The delete key removes the character above or to the right of the cursor. The backspace removes the character to the left of the cursor.
Delete key deletes any amount of text. The left arrow key only moves the I beam
ExecuteQuery() :To Execute SELECT StatementExecuteNonQuery() :To Execute Other Than Select Statements (INSERT/UPDATE/DELETE)
DEL key (delete key) gets rid of the things on front of the cursor. Backspace gets rid of things behind the cursor.DEL key is used to delete files
The query is simple set of insert,update,delete statement where as transaction is a set of statement which follows ACID properties.
Delete statement deletes only the data from the table but you can apply some condition and only part of the data can be deleted. Truncate empties entire table. Drop deletes the table itself.
The basic difference between DDL and DML is the commands they provide . The DDL provides statement for the creation and deletion of tables, indexes, views etc. while the DML provides statements to enter, update, delete and perform complex queries on these tables.
Once data is truncated it can not be rolled back (recovered). However, data can be rolled back if deleted accidentally.