我正在尝试在表sakila中添加一个新行。电影,但我不能在表中看到它,我认为不存在,但是当执行此语句正常工作时,我不知道发生了什么
INSERT INTO `sakila`.`film`
(
`title`,
`description`,
`release_year`,
`language_id`,
`original_language_id`,
`rental_duration`,
`rental_rate`,
`length`,
`replacement_cost`,
`rating`,
`special_features`,
`last_update`)
VALUES( 'GUSANO' ,'GUSANO' ,2006,1,1,3,4.99,4 ,19.99, 'G','Trailers','2006-02-15 04:34:33.0');
结果:
21:52:44 INSERT INTO `sakila`.`film` ( `film_id`, `title`, `description`, `release_year`, `language_id`, `original_language_id`, `rental_duration`, `rental_rate`, `length`, `replacement_cost`, `rating`, `special_features`, `last_update`) VALUES( 10010, 'GUSANO' ,'GUSANO' ,2006,1,1,3,4.99,4 ,19.99, 'G','Trailers','2006-02-15 04:34:33.0') 1 row(s) affected 0.015 sec