CREATE DATABASE 데이터베이스명;
SHOW DATABASES;
USE 데이터베이스명;
예제
//opentutorials 라는 데이터베이스 테이블 생성
mysql> create database opentutorials;
Query OK, 1 row affected (0.01 sec)
//데이터베이스들 모두 조회
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| bob |
| information_schema |
| mysql |
| opentutorials |
| performance_schema |
| sakila |
+--------------------+
6 rows in set (0.00 sec)
//사용할 데이터베이스 선택 - opentutorials 라는 디비 사용
mysql> use opentutorials;
Database changed
Warning | 1681 | Integer display width is deprecated and will be removed in a future release.
예제를 따라서 SQL문을 작성하다가 마주친 워닝 문구
아마 범위 지정때문에 경고를 받은듯하다
어떤 경고인지 자세하게 보면 좋을것같아 찾아본 MySQL warning 확인하는 명령어
mysql> show warnings
-> ;
+---------+------+------------------------------------------------------------------------------+
| Level | Code | Message |
+---------+------+------------------------------------------------------------------------------+
| Warning | 1681 | Integer display width is deprecated and will be removed in a future release. |
| Warning | 1681 | Integer display width is deprecated and will be removed in a future release. |
| Warning | 1681 | Integer display width is deprecated and will be removed in a future release. |
| Warning | 1681 | Integer display width is deprecated and will be removed in a future release. |
+---------+------+------------------------------------------------------------------------------+
4 rows in set (0.00 sec)
show warnings; 를 입력해주면 받은 경고에 대한 상세 메세지를 확인할수있다
워닝 코드는 1681이며
워닝 메세지는 Integer display width is deprecated and will be removed in a future release. 였다