INSERT...DEFAULT VALUES : Insert « Insert Delete Update « SQL Server / T-SQL Tutorial






3> CREATE TABLE random_data
4> (
5> col1    int      PRIMARY KEY IDENTITY(10,10) NOT NULL,
6> col2    int      NOT NULL DEFAULT CASE
7>                  -- Random integer between -9999 and 9999
8>                  WHEN CONVERT(int, RAND() * 1000) % 2 = 1
9>                  THEN (CONVERT(int, RAND() * 100000) % 10000 * -1 )
10>                  ELSE CONVERT(int, RAND() * 100000) % 10000
11>                  END,
12> col3    char(15) NOT NULL DEFAULT
13>                   CHAR((CONVERT(int, RAND() * 1000) % 26 ) + 65)
14>                  -- 65 is 'A'
15>                  + CHAR((CONVERT(int, RAND() * 1000) % 26 ) + 65)
16>                  + CHAR((CONVERT(int, RAND() * 1000) % 26 ) + 65)
17>                  + CHAR((CONVERT(int, RAND() * 1000) % 26 ) + 65)
18>                  + REPLICATE(CHAR((CONVERT(int, RAND() * 1000)
19>                      % 26) + 65), 11)
20> )
21> GO
1>
2> DECLARE @counter int
3> SET @counter=1
4> WHILE (@counter <= 1000)
5>     BEGIN
6>     INSERT random_data DEFAULT VALUES
7>     SET @counter=@counter + 1
8>     END
9> GO
1>
2> drop table random_data;
3> 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