일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- HTTP
- Date and Time Function
- 방화벽
- Sring Functions and Operators
- Oracle
- 전자정부 표준프레임워크
- 윈도우
- Tibero
- 전자정부표준프레임워크
- String Functions and Operators
- 티베로
- MySQL
- Data and Time Functions
- String Functions and Date Operators
- SVN
- Date and Time Functions
- 오라클
- String Function and Operators
- Today
- Total
웹이야기
9. MySQL DATABASE 본문
Creating and Using a Database
데이타 베이스 생성 및 사용
1) 데이타베이스 목록 보기
mysql> show databases ;
2) 데이타베이스 생성
mysql> create database testdb;
3) 데이타베이스 access
mysql> use testdb
semicolon(;) 이 없어도 된다.
4) 현재 내가 로그인 해서 사용중인/접속중인 데이타베이스 확인
mysql > select database();
5) db중에서 mysql, test db description
The mysql database describes user access privileges. The test database often is available as a workspace for users to try things out.
6) 사용자 생성
mysql> create user 'aaaa'@'localhost' identified by 'password';
7) 권한 부여
mysql> grant all privileges on testdb.* to 'aaaa@localhost' with grant option ;
8) 데이타 베이스 삭제
mysql> drop databse testdb;
* ERROR 1410 (42000): You are not allowed to create a user with GRANT
root로 접속해서 권한을 부여하는데도 위와 같은 오류가 발생하였다.
CREATE USER 'root'@'%' IDENTIFIED BY 'root';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
를 실행한 후에 다시 사용자에게 권한을 부여하니 된다.
https://dzzienki.tistory.com/22
'D > MySQL' 카테고리의 다른 글
mysql.user table (0) | 2020.02.06 |
---|---|
mysql 접속(command line) (0) | 2020.02.06 |
8. Installing MySQL on Linux Using the MySQL Yum Repository (0) | 2020.01.11 |
7. MySQL root 패스워드 변경 (0) | 2020.01.11 |
6. MySQL 설치(소스 컴파일, 5.7, 8.x 버전) (0) | 2020.01.09 |