[root@sd /]# mysql -u root -p Enter password: ++++++++ Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 75 Server version: 5.1.41-log VineLinux MySQL RPM Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create database claw; Query OK, 1 row affected (0.00 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | claw | +--------------------+ 1 rows in set (0.00 sec) mysql> use claw Database changed mysql> create table az(num int, name varchar(30)); Query OK, 0 rows affected (0.13 sec) mysql> insert into az values(1,'なんや入ったやんか'); Query OK, 1 row affected (0.00 sec) mysql> insert into az values(2,'ココからが問題やの'); Query OK, 1 row affected (0.00 sec) mysql> insert into az values(3,'画像やムービーさんのパス入れんのか?'); Query OK, 1 row affected (0.00 sec) mysql> select * from az; +------+--------------------------------------------------------+ | num | name | +------+--------------------------------------------------------+ | 1 | なんや入ったやんか | | 2 | ココからが問題やの | | 3 | 画像やムービーさんのパス入れんのか? | +------+--------------------------------------------------------+ 3 rows in set (0.00 sec) mysql> exit Bye [root@sd /]#