DEFAULT Constraint Example

Let’s create a MySQL table “blog_posts”

CREATE TABLE blog_posts (
    post_id INT AUTO_INCREMENT PRIMARY KEY,
    title VARCHAR(255) NOT NULL,
    content TEXT NOT NULL,
    published_date DATE DEFAULT CURRENT_DATE
);

Final Table:

Field Type Null Key Default Extra
post_id int NO PRI NULL auto_increment
title varchar(255) NO NULL
content text NO NULL
published_date date YES CURRENT_DATE

In this table, we have set the publish_date value to default value of the current date using CURRENT_DATE. So if a new entry doesn’t provide value for publish_date column, MySQL will automatically take the current date.

Let’s try and insert new values into this table.

INSERT INTO blog_posts (title, content) VALUES ('My First Blog Post', 'Hello, world! This is my inaugural post.');

Output:

post_id title content published_date
1 My First Blog Post Hello, world! This is my inaugural post. 2023-03-12

MySQL DEFAULT Constraint

The MySQL DEFAULT constraint returns the default value for a table column. The DEFAULT value of a column is a value used in the case, when there is no value specified by the user.

To use this function there should be a DEFAULT value assigned to the column. Otherwise, it will generate an error.

Similar Reads

Syntax

DEFAULT (column_name)...

How to Add DEFAULT CONSTRAINT

To add a DEFAULT constraint to a MySQL table, there are two methods available....

Using DEFAULT Constraint on CREATE TABLE

We can add a DEFAULT constraint while creating a table in MySQL....

Add DEFAULT Constraint with ALTER TABLE Statement

We can add DEFAULT Constraint to a already existing table using ALTER TABLE Statement....

DEFAULT Constraint Example

Let’s create a MySQL table “blog_posts”...

Key TakeAways:

Compatibility with Data Types: The default value must be compatible with the column’s data type. Expression Defaults (MySQL 8.0.13+): Starting from MySQL 8.0.13, you can use expressions as default values. Limitations on BLOB and TEXT Columns: Prior to MySQL 8.0.13, BLOB and TEXT columns cannot have a DEFAULT value due to their nature of storing large amounts of data. However, from MySQL 8.0.13 and onward, this restriction has been lifted for certain expressions like CURRENT_TIMESTAMP. NOT NULL Columns: If a column is set to NOT NULL without a DEFAULT value explicitly defined, and you try to insert a row without specifying a value for this column, MySQL will throw an error. Defining a DEFAULT value can prevent such errors....