You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 regels
175 B

  1. use DeliveryTakingSystem;
  2. create table `user`(
  3. id int auto_increment,
  4. username varchar(20),
  5. `password` varchar(20),
  6. `phone` varchar(20),
  7. primary key(id)
  8. );