Insert statement without column names : Insert « Insert Delete Update « SQL / MySQL






Insert statement without column names

      
mysql>
mysql>
mysql> CREATE   TABLE PENALTIES
    ->         (PAYMENTNO      INTEGER      NOT NULL,
    ->          EmployeeNO       INTEGER      NOT NULL,
    ->          PAYMENT_DATE   DATE         NOT NULL,
    ->          AMOUNT         DECIMAL(7,2) NOT NULL,
    ->          PRIMARY KEY    (PAYMENTNO)          );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> INSERT INTO PENALTIES VALUES (1,  6, '1980-12-08',100);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (2, 44, '1981-05-05', 75);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (3, 27, '1983-09-10',100);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (4,104, '1984-12-08', 50);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (5, 44, '1980-12-08', 25);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (6,  8, '1980-12-08', 25);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (7, 44, '1982-12-30', 30);
Query OK, 1 row affected (0.00 sec)

mysql> INSERT INTO PENALTIES VALUES (8, 27, '1984-11-12', 75);
Query OK, 1 row affected (0.00 sec)

mysql>
mysql>
mysql> INSERT INTO PENALTIES
    -> VALUES (15, 27, '1985-11-08', 75);
Query OK, 1 row affected (0.00 sec)

mysql>
mysql> drop table penalties;
Query OK, 0 rows affected (0.00 sec)

mysql>

   
    
    
    
    
    
  








Related examples in the same category

1.Calculation in INSERT clause
2.Simple INSERT clause
3.Adding Multiple Rows to a Table
4.Calculation in INSERT command
5.Use INSERT LOW_PRIORITY command
6.Insert three rows together
7.Using INSERT DELAYED
8.Insert statement and date calculation
9.INSERT ON DUPLICATE KEY UPDATE
10.Table join and insert
11.INSERT IGNORE statement
12.Using one insert statement to add more than one rows
13.Insert null value
14.Get the last insert id
15.Insert record to mysql.db
16.Data Changed by Field Syntax When 123.4567 Is Inserted
17.How to create an INSERT statement.
18.In INSERT statement, the columns names are specified and only the values for those columns are included
19.Insert values into multiple rows.
20.Use the SQL statement INSERT to create a record
21.A shortcut INSERT statement to enter the data.
22.Inserting Data within One INSERT Statement
23.Column list in the insert statement