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 lines
255 B

  1. CREATE TABLE `phalapi_test`.`tbl_user` (
  2. `id` INT NOT NULL,
  3. `name` VARCHAR(45) NULL,
  4. `note` VARCHAR(45) NULL,
  5. PRIMARY KEY (`id`));
  6. INSERT INTO `phalapi_test`.`tbl_user` (`id`, `name`, `note`) VALUES ('1', 'dogstar', 'oschina');