简体   繁体   中英

ORA-01858: a non-numeric character found where a digit was expected

create table fb_post (    
post_id int primary key,    
post_author varchar(5),    
post_wall_id varchar(5),    
post_date date,    
post_location varchar(50),    
foreign key (post_author) references fb_user(fb_id),    
foreign key (post_wall_id) references fb_wall(wall_id));

insert into fb_post
values(1201,'F2','W6',to_date('Oct-02-07 09:11:17','mon-dd-yy hh24:mi:ss'),'Gonzales, LA, United States');

insert into fb_post
values(1202,'F3','W8'   ,to_date('Oct-02-07 01:31:39','mon-dd-yy hh24:mi:ss'),'Gonzales, LA, United States');

insert into fb_post
values(1203,'F12','W14',to_date(' Oct-02-07 09:10:54, 'mon-dd-yy hh24:mi:ss'),'Pasadena,LA,United States');

The first and third rows are being created but the second one fails saying,

ORA-01858: a non-numeric character found where a digit was expected

You're missing a ' after 09:10:54 :

insert into fb_post
values(1203,'F12','W14',to_date(' Oct-02-07 09:10:54', 'mon-dd-yy hh24:mi:ss'),'Pasadena,LA,United States');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM