Insert null value : Insert « Insert Delete Update « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
PostgreSQL
MySQL Tutorial
SQL / MySQL » Insert Delete Update » Insert 
Insert null value
      
mysql>
mysql>
mysql> CREATE TABLE EmployeeS(
    ->          EmployeeNO       INTEGER      NOT NULL,
    ->          NAME           CHAR(15)     NOT NULL,
    ->          INITIALS       CHAR(3)      NOT NULL,
    ->          BIRTH_DATE     DATE                 ,
    ->          SEX            CHAR(1)      NOT NULL,
    ->          JOINED         SMALLINT     NOT NULL,
    ->          STREET         VARCHAR(30)  NOT NULL,
    ->          HOUSENO        CHAR(4)              ,
    ->          POSTCODE       CHAR(6)              ,
    ->          TOWN           VARCHAR(30)  NOT NULL,
    ->          PHONENO        CHAR(13)             ,
    ->          LEAGUENO       CHAR(4)              ,
    ->          PRIMARY KEY    (EmployeeNO)           );
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO EmployeeS
    ->        (EmployeeNO, NAME, INITIALS, SEX,
    ->         JOINED, STREET, TOWN)
    -> VALUES (611'Jones', 'GG', 'M'1977'Green Way', 'Stratford')
    -> ;
Query OK, row affected (0.00 sec)

mysql> INSERT INTO EmployeeS
    ->        (EmployeeNO, NAME, INITIALS, BIRTH_DATE,
    ->         SEX, JOINED, STREET, HOUSENO, POSTCODE,
    ->         TOWN, PHONENO, LEAGUENO)
    -> VALUES (611'Jones', 'GG', NULL, 'M'1977,
    ->         'Green Way', NULL, NULL, 'Stratford', NULL, NULL);
ERROR 1062 (23000): Duplicate entry '611' for key 'PRIMARY'
mysql>
mysql>
mysql> drop table Employees;
Query OK, rows affected (0.00 sec)

   
    
    
    
    
    
  
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.Insert statement without column names
13.Using one insert statement to add more than one rows
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
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.