C:\Users\Asus>cd\ C:\>cd apache C:\apache>cd mysql C:\apache\mysql>cd bin C:\apache\mysql\bin>mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6 to server version: 5.0.16-nt Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> create database keretaapi; Query OK, 1 row affected (0.29 sec) mysql> use keretaapi; Database changed mysql> create table TIKETAGENT( -> nama_agent varchar(20) not null, -> kode_pembayaran varchar(20) not null, -> primary key (nama_agent)); Query OK, 0 rows affected (0.02 sec) mysql> desc TIKETAGENT; +-----------------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------------+-------------+------+-----+---------+-------+ | nama_agent | varchar(20) | ...