Flavianus Dui Saverino Rahim - 13.2020.1.00964 - 6
Flavianus Dui Saverino Rahim - 13.2020.1.00964 - 6
Flavianus Dui Saverino Rahim - 13.2020.1.00964 - 6
C:\>cd xampp
C:\xampp>cd mysql
C:\xampp\mysql>cd bin
C:\xampp\mysql\bin>mysql -u root -p
Enter password:
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
Database changed
MariaDB [modul3]> create table customer (id_customer int, nama_customer varchar(100), alamat
varchar(200), no_telp int);
MariaDB [modul3]> insert into customer (id_customer, nama_customer, alamat, no_telp) values ('c1',
'ucup', 'kedinding', 081234567891), ('c2', 'alfin', 'bulak banteng', 087639458126), ('c3', 'ajes', 'gubeng',
085283740128);