11. mySQL 데이터베이스 생성과 테이블
1. 기본적으로 생성되어있는 데이터베이스 확인. msql> show databases; +-------------------+ | Database | +-------------------+ | information_schema | | mysql | | test | +-------------------+ 3 rows in set (0,00 sec) mysql> 2. 데이터베이스 생성 "student" 라는 데이터베이스를 한개 만들고, mysql> create database student; 잘 만들어졌나 확인. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mys..
■ 개발 서버 ■/Linux RedHat Enterprise
2013. 10. 17. 23:17