SELECT syainNo
, name
,date
,place
, time
FROM YOTEI_DATA_TBL;
I selected what I created in oracle db.
ORA-00936—The expression is missing.
00936.00000 - "missing expression"
*Cause:
*Action:
Row 16 Column 5
encountered an error.
I checked and found that the column exists, but the select cannot be executed.
Please give me some advice.
I think the reason is that the date
and time
used for column names are reserved words in Oracle.
As a countermeasure, try to escape by double-quote like "date"
.
This post was posted as a community wiki based on @ Kazuyuki Deba's comment.
© 2024 OneMinuteCode. All rights reserved.