
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
Adding a new NOT NULL column to an existing table with records
To add a new NOT NULL column to an already created table, use ALTER command. Let us first create a table −
mysql> create table DemoTable -> ( -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> StudentName varchar(20) -> ); Query OK, 0 rows affected (0.60 sec)
Following is the query to add a new NOT NULL column to an existing table −
mysql> alter table DemoTable add column StudentAge int NOT NULL; Query OK, 0 rows affected (0.52 sec) Records: 0 Duplicates: 0 Warnings: 0
Insert some records in the table using insert command −
mysql> insert into DemoTable(StudentName,StudentAge) values('Chris',21); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable(StudentName,StudentAge) values('David',23); Query OK, 1 row affected (0.13 sec) mysql> insert into DemoTable(StudentName,StudentAge) values('Mike',NULL); ERROR 1048 (23000): Column 'StudentAge' cannot be null
Display all records from the table using select statement −
mysql> select * from DemoTable;
This will produce the following output −
+-----------+-------------+------------+ | StudentId | StudentName | StudentAge | +-----------+-------------+------------+ | 1 | Chris | 21 | | 2 | David | 23 | +-----------+-------------+------------+ 2 rows in set (0.00 sec)
- Related Articles
- Adding new enum column to an existing MySQL table?
- Adding a new column to an existing DataFrame in Python Pandas
- Adding new column to existing DataFrame in Pandas
- How can we apply a NOT NULL constraint to a column of an existing MySQL table?
- Set NOT NULL attribute to an existing column in MySQL
- How can we remove NOT NULL constraint from a column of an existing MySQL table?
- Display only NOT NULL values from a column with NULL and NOT NULL records in MySQL
- Adding a new column to existing DataFrame in Pandas in Python
- How to add a new column to an existing table using JDBC API?
- Add a new column and index to an existing table with ALTER in a single MySQL query?
- How to add a new column to an existing table of Laravel in a migration?
- Inserting data into a new column of an already existing table in MySQL?
- How to add not null constraint to existing column in MySQL?
- Adding a column whose value is not null by default in MySQL?
- How to rename a column in an existing MySQL table?

Advertisements