Database/MySQL
[마리아DB] 데이터베이스 및 사용자 계정 관리
데이터 베이스 생성 CREATE DATABASE [데이터베이스명]; MariaDB [(none)]> create database testdb; 데이터 베이스 확인 SHOW DATABASES; MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | testdb | | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 계정생성 및 권한설정은 mysql DB에서 관리한다. USE mysql; MariaDB [(none)]> use mysql; Reading table information for ..
2021. 12. 28. 13:11
최근댓글