티스토리 뷰
mysql 데이터베이스 생성 기본명령어
데이터베이스 생성하기 : create
MariaDB [mysql]> create database 이름;
Query OK, 1 row affected (0.00 sec)
데이터베이스 삭제하기 : drop
MariaDB [mysql]> drop database 이름;
Query OK, 0 rows affected (0.18 sec)
데이터베이스 보기 명령어: show
MariaDB [mysql]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| new_schema |
| opentutorials |
| performance_schema |
| workbench |
+--------------------+
6 rows in set (0.01 sec)
MariaDB [mysql]>
데이터베이스 이용하기 : use
MariaDB [mysql]> use opentutorials;
Database changed
'프로그래밍 > C#' 카테고리의 다른 글
mysql 테이블 insert 실습 (0) | 2018.09.21 |
---|---|
mysql 테이블 생성하기 (0) | 2018.09.21 |
라즈베리파이에서 mysql 접속하기 (0) | 2018.09.21 |
맥 터미널에서 MySQL 접속하기 (0) | 2018.09.21 |
맥에 MySQL 설치하기 (0) | 2018.09.20 |
댓글