Data Changed by Field Syntax When 123.4567 Is Inserted : Insert « Insert Delete Update « SQL / MySQL






Data Changed by Field Syntax When 123.4567 Is Inserted

      

Syntax                       Code                Display                              Description
 
DECIMAL(w,d)                 DECIMAL(5,2)        123.46                               5 digits, 2 decimal places
 
NUMERIC(w,d)                 NUMERIC(7,4)        123.4567                             Exact fit. (7 digits, 4 decimal places)
 
DECIMAL(w)                   DECIMAL(9)          123                                  No decimal specification defaults to 0 decimal places.
 
DECIMAL                      DECIMAL             123                                  Default is 10 digits, 0 decimal places. (10 digits, 7 padded places to left of number)
 

   
    
    
    
    
    
  








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.Insert null value
15.Get the last insert id
16.Insert record to mysql.db
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