MySQL - Creating DB

임재현·2021년 4월 27일
0

MySQL

목록 보기
1/52
post-custom-banner

My SQL을 복습하고 더 나아가 SQL능력을 향상시키기 위해 Udemy - The Ultimate MySQL Bootcamp: Go from SQL Beginner to Expert 강좌를 듣기로 했다. 앞으로 이 강좌를 들으면서 내용을 정리하고 블로깅하려고 한다.
Installing MySql on mac os

Creating DB ... and ETC

show databases;

show databases; All it does is list the current databases that exist and the sql server

Create Database \;

create database name; : create database. Ex)create database soap_store;

Drop Database \;

drop database name; : drop database. Ex) drop database soap_store;

Use Database \;

use database name; : use database. Ex) use databse soap_store;

SELECT database();

Select database() : show now using database.현재 사용하고 있는 데이터베이스를 보여준다.

mysql> select database();
+------------+
| database() |
+------------+
| chat       |
+------------+
1 row in set (0.00 sec)
profile
임재현입니다.
post-custom-banner

0개의 댓글