SQL DROP Statement
SQL DROP statement is used to completely delete the object from the database or you can drop database itself. You can use DROP statement to delete tables, indexes, views, procedures, users, databases etc. DROP...
by Manzoor Siddiqui · Published August 29, 2015 · Last modified October 18, 2015
SQL DROP statement is used to completely delete the object from the database or you can drop database itself. You can use DROP statement to delete tables, indexes, views, procedures, users, databases etc. DROP...
by Manzoor Siddiqui · Published August 28, 2015 · Last modified October 18, 2015
SQL SELECT INTO statement is used to create a new table from an existing table with all selected rows and columns. Hence, SELECT INTO statement is also used to backup table data in day...
by Manzoor Siddiqui · Published August 27, 2015 · Last modified October 18, 2015
SQL LIKE operator is used to find the specified pattern in a column. LIKE operator is used with WHERE clause and searches for regular characters or wildcard characters, wildcard characters are %, [ ], _,...
by Manzoor Siddiqui · Published August 26, 2015 · Last modified October 18, 2015
SQL DELETE statement is used to remove row(s) from a table or view. Caution: This is very common mistake done by database users that they forget to include WHERE condition and all records gets deleted....
by Manzoor Siddiqui · Published August 25, 2015 · Last modified October 18, 2015
SQL INSERT INTO statement is used to add new records in a table. Syntax 1 You can sequentially insert values into columns according to table structure without mentioning column names. INSERT INTO TableName VALUES (value1,...
by Manzoor Siddiqui · Published August 24, 2015 · Last modified October 18, 2015
SQL UPDATE statement is used to update or modify existing record(s) in a database table. Caution: Make sure that while using UPDATE statements always remember WHERE conditions, else it will update all records in a...
More