· 7 years ago · Dec 19, 2018, 03:36 AM
1create database if not exists crud;
2use crud;
3create table if not exists profil(
4 id_profil int (12) not null auto_increment,
5 nama_lengkap varchar (100) not null,
6 alamat text not null,
7 telpon varchar (13) not null,
8 email varchar (50) not null,
9 primary key (id_profil)
10)