bash-3.00$ ./mysql_client Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 283 to server version: 5.0.22-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use demoOne Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> create table students ( -> username char(8), -> last varchar(40), -> first varchar(40) ) -> ; Query OK, 0 rows affected (0.04 sec) mysql> insert into students values ("dgerman", "German", "Adrian"); Query OK, 1 row affected (0.01 sec) mysql> insert into students values ("lbird", "Bird", "Larry"); Query OK, 1 row affected (0.00 sec) mysql> select * from students; +----------+--------+--------+ | username | last | first | +----------+--------+--------+ | dgerman | German | Adrian | | lbird | Bird | Larry | +----------+--------+--------+ 2 rows in set (0.00 sec)