Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

레코드가 있는 기존 테이블에 새 NOT NULL 열 추가

<시간/>

이미 생성된 테이블에 새로운 NOT NULL 컬럼을 추가하려면 ALTER 명령어를 사용한다. 먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
   -> (
   -> StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   -> StudentName varchar(20)
   -> );
Query OK, 0 rows affected (0.60 sec)

다음은 기존 테이블에 새로운 NOT NULL 열을 추가하는 쿼리입니다 -

mysql> alter table DemoTable add column StudentAge int NOT NULL;
Query OK, 0 rows affected (0.52 sec)
Records: 0 Duplicates: 0 Warnings: 0

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

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

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select * from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+-----------+-------------+------------+
| StudentId | StudentName | StudentAge |
+-----------+-------------+------------+
|         1 | Chris       |         21 |
|         2 | David       |         23 |
+-----------+-------------+------------+
2 rows in set (0.00 sec)