An INSERT statement that adds the new row using a column list : Insert « Insert Delete Update « SQL Server / T-SQL Tutorial






5>
6>
7> create table Billings (
8>     BankerID           INTEGER,
9>     BillingNumber      INTEGER,
10>     BillingDate        datetime,
11>     BillingTotal       INTEGER,
12>     TermsID            INTEGER,
13>     BillingDueDate     datetime ,
14>     PaymentTotal       INTEGER,
15>     CreditTotal        INTEGER
16>
17> );
18> GO
1>
2> INSERT INTO Billings VALUES (1, 1, '2005-01-22', 165, 1,'2005-04-22',123,321);
3> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (2, 2, '2001-02-21', 165, 1,'2002-02-22',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (3, 3, '2003-05-02', 165, 1,'2005-04-12',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (4, 4, '1999-03-12', 165, 1,'2005-04-18',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (5, 5, '2000-04-23', 165, 1,'2005-04-17',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (6, 6, '2001-06-14', 165, 1,'2005-04-18',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (7, 7, '2002-07-15', 165, 1,'2005-04-19',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (8, 8, '2003-08-16', 165, 1,'2005-04-20',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (9, 9, '2004-09-17', 165, 1,'2005-04-21',123,321);
2> GO

(1 rows affected)
1> INSERT INTO Billings VALUES (0, 0, '2005-10-18', 165, 1,'2005-04-22',123,321);
2> GO

(1 rows affected)
1>
2>
3> INSERT INTO Billings
4>     (BankerID, BillingNumber, BillingTotal, PaymentTotal, CreditTotal,
5>     TermsID, BillingDate, BillingDueDate)
6> VALUES
7>     (97, '456789', 8344.50, 0, 0, 1, '2002-08-01', '2002-08-31')
8> GO

(1 rows affected)
1>
2>
3> drop table Billings;
4> GO








2.1.Insert
2.1.1.The syntax of the INSERT statement for inserting a single row
2.1.2.INSERT Statement
2.1.3.Inserting Data for a Subset of Table Columns
2.1.4.The insertion of values into some (but not all) of a table's columns usually requires the explicit specification of the corresponding columns.
2.1.5.The order of column names in the VALUE clause of the INSERT statement can be different from the original order of those columns.
2.1.6.An INSERT statement that adds the new row using a column list
2.1.7.INSERT statement with a column list
2.1.8.INSERT...DEFAULT VALUES
2.1.9.Use declared variables in insert statement
2.1.10.An INSERT statement that fails because a related row doesn't exist
2.1.11.eliminate the optional column list and allow SQL Server to assume we're providing something for every column
2.1.12.How to add rows to a table based on the output of a stored procedure