Mega Code Archive
Search
.Net
ASP .Net
ASP .Net Tutorial
C#
C# Book
C# by API
C# Tutorial
VB.Net
VB.Net by API
VB.Net Tutorial
Visual C++ .Net
VisualBasic Script
Java
Java
Java Book
Java by API
Java Tutorial
Script
Flash ActionScript
Flex
JavaScript DHTML
JavaScript Reference
JavaScript Tutorial
Database
MSSQL
MSSQL Tutorial
MySQL
MySQL Tutorial
Oracle PLSQL
Oracle PLSQL Tutorial
PostgreSQL
Languages
Android
C
C Tutorial
C++
C++ Tutorial
Delphi
Perl
PHP
Python
Python Tutorial
Ruby
Silverlight
Office
MSOfficeExcel 2007 Tutorial
MSOfficePowerPoint 2007 Tutorial
MSOfficeWord 2007 Tutorial
Data
XML
XML Tutorial
MSSQL
Insert Delete Update 34 codes
Home
MSSQL
Insert Delete Update
1 An UPDATE statement can only modify data of a single table
2 Anything can be inserted as long as the column count and data types match
3 BULK INSERT dbo mybcp
4 Change more than one column by adding a comma and the additional column expression
5 Delete can also be performed using the where clause with joined tables
6 Delete command with conditions
7 Delete rows using IN and subquery
8 Delete with IN operator and subquery
9 Deleting a Row in a Table
10 Insert data returned from a select statement
11 Insert with default value
12 Inserting Images
13 Inserting Rows from Another Table
14 Inserting Several Records in a Query Batch
15 Inserts 12000 rows into a table
16 Inserts 3000 row into a table
17 Inserts one or more rows selected with a subquery
18 Leave column as NULL
19 Managing Inserts Using Stored Procedures
20 Math operator in update statement
21 Modify rows of a table with an expression
22 Reference a declared variable in an update statement
23 The order of the columns in the insert statement
24 TOP Clause in DELETE Statements
25 Update a single column
26 Update a single row
27 Update command with where condition
28 Update more than one columns in update clause
29 Update statement and IN operator
30 UPDATE with a Join
31 Updating a Column Value
32 Updating Rows Based on Multiple Tables
33 Use CASE in the UPDATE statement
34 Using an expression in our UPDATE statement