데이터베이스 모델링

우 동현·2021년 10월 5일
0

더존비즈온양성과정

목록 보기
17/26


cdmall 이름으로 저장

create database cdmall;
create user 'cdmall'@'10.0.2.2' identified by 'cdmall';
grant all privileges on cdmall.* to 'cdmall'@'10.0.2.2';
flush privileges;
show database;

포워드 엔지니어링


use cdmall
show tables;

desc song;

0개의 댓글