1. mysql 각종 설정 확인
mysql> status
2. database확인
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.00 sec)
mysql>
3. database 선택
mysql> use test
4. database 내에 table 확인 (먼저 use를 통해 database를 선택해야 함)
mysql> show tables;
5. database 생성 및 table 생성
mysql> create database [database 이름];
mysql> use [database 이름];
mysql> create table [table 이름] ([Attr 이름] [Attr 타입] , [Attr 이름] [Attr 타입] ... );
6. table의 schema 보기
mysql> describe [table 이름];
mysql> status
2. database확인
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.00 sec)
mysql>
3. database 선택
mysql> use test
4. database 내에 table 확인 (먼저 use를 통해 database를 선택해야 함)
mysql> show tables;
5. database 생성 및 table 생성
mysql> create database [database 이름];
mysql> use [database 이름];
mysql> create table [table 이름] ([Attr 이름] [Attr 타입] , [Attr 이름] [Attr 타입] ... );
6. table의 schema 보기
mysql> describe [table 이름];
'도서관 I > Database' 카테고리의 다른 글
[바람이] MySql 5.0.37 Windows Source 설치 조건 (0) | 2007.07.02 |
---|---|
[펌] MySQL 소스 인스톨 완전해부 (0) | 2007.07.02 |
[바람이] mysql 5.0 소스 & 서버 프로그램 다운로드 (0) | 2007.06.29 |
[바람이] TPC란? (0) | 2007.06.29 |
[펌] MySQL 기본 명령어 정리입니다. (0) | 2005.08.22 |