:::MySQLÀÛ¾÷Çϱâ::::::::::::::::::::::::::::::::::: Microsoft Windows 2000 [Version 5.00.2195] (C) Copyright 1985-2000 Microsoft Corp. C:\Documents and Settings\Administrator>mysql ERROR 1045: 'ODBC@localhost' »ç¿ëÀÚ´Â Á¢±ÙÀÌ °ÅºÎ µÇ¾ú½À´Ï´Ù. (Using password: ¾Æ´Ï¿À) C:\Documents and Settings\Administrator> C:\Documents and Settings\Administrator> C:\Documents and Settings\Administrator>mysql -u root -p mysql Enter password: ******** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 to server version: 4.0.21-nt Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> create database appledb; Query OK, 1 row affected (0.13 sec) mysql> grant all on appledb.* to apple@localhost identified by '1234'; Query OK, 0 rows affected (0.16 sec) mysql> exit Bye C:\Documents and Settings\Administrator>mysql -u apple -p Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 to server version: 4.0.21-nt Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> \s -------------- mysql Ver 12.22 Distrib 4.0.21, for Win95/Win98 (i32) Connection id: 3 Current database: Current user: apple@localhost SSL: Not in use Server version: 4.0.21-nt Protocol version: 10 Connection: localhost via TCP/IP Client characterset: latin1 Server characterset: latin1 TCP port: 3306 Uptime: 48 min 7 sec Threads: 1 Questions: 8 Slow queries: 0 Opens: 8 Flush tables: 1 Open tables: 2 Queries per second avg: 0.003 -------------- mysql> show databaes; ERROR 1064: 'SQL ±¸¹®¿¡ ¿À·ù°¡ ÀÖ½À´Ï´Ù.' ¿¡·¯ °°À¾´Ï´Ù. ('databaes' ¸í·É¾î ¶óÀÎ 1) mysql> show databases; +----------+ | Database | +----------+ | appledb | +----------+ 1 row in set (0.00 sec) mysql> use appledb; Database changed mysql> show tables; Empty set (0.00 sec) mysql> mysql> create table mymemo(num int not null auto_increment primary key, -> name varchar(20) not null, -> email varchar(30) not null, -> memo varchar(100) not null); Query OK, 0 rows affected (0.06 sec) mysql> mysql> memo varchar(100) not null); ERROR 1064: 'SQL ±¸¹®¿¡ ¿À·ù°¡ ÀÖ½À´Ï´Ù.' ¿¡·¯ °°À¾´Ï´Ù. ('memo varchar(100) not null)' ¸í·É¾î ¶óÀÎ 1) mysql> mysql> select * from mymemo; +-----+------+-------+------+ | num | name | email | memo | +-----+------+-------+------+ | 1 | 22 | 22 | 22 | +-----+------+-------+------+ 1 row in set (0.02 sec) mysql> :::memoinput.html:::::::::::::::::::::::::::::::::::