我有以下查询将值插入myemp表:
insert into myemp(employee_id,first_name,last_name,hire_date)
values(1001,'dato,'datuashvili','01-03-05');
Run Code Online (Sandbox Code Playgroud)
运行后写道
Error starting at line 7 in command:
insert into myemp(employee_id,first_name,last_name,hire_date)
values(1001,'dato,'datuashvili','01-03-05');
Error at Command Line:8 Column:21
Error report:
SQL Error: ORA-00917: missing comma
00917. 00000 - "missing comma"
*Cause:
*Action:
Run Code Online (Sandbox Code Playgroud)
但我无法理解我错过逗号的地方.
试试这个
insert into myemp(employee_id,first_name,last_name,hire_date)
values(1001,'dato','datuashvili','01-03-05');
Run Code Online (Sandbox Code Playgroud)
'拿督后失踪了