SQLServerLog.com - Database Tips, Techniques and Tutorials

0

SQL DROP Statement

439views 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....

0

SQL SELECT INTO Statement

359views 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...

0

SQL LIKE Operator

373views 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 %, [ ],...

0

SQL DELETE Statement

329viewsSQL 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....

0

SQL INSERT INTO Statement

465views 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...

0

SQL UPDATE Statement

304views 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...