Skip to content

Latest commit

 

History

History
35 lines (35 loc) · 625 Bytes

mysql-command.md

File metadata and controls

35 lines (35 loc) · 625 Bytes

MySQL 명령어

기본적인 명령어

DB사용

use DB명

show

show databases;  --DB조회
show tables -- table조회

create

create database DB--DB만들기
create table talbe--table만들기

table 구조 확인

desc table명

유저관련 명령어

유저 조회

use mysql
select user, host from user

mysql 이라는 DB를 사용하고 user와 host 를 user 테이블에서 불러온다.

유저 추가

create user `test`@`localhost` IDENTIFIED by '1234'

유저 제거

drop user `유저이름`@`호스트`