ora-00933
my query produces error “ORA-00933: SQL command not properly ended” in C++
Here is my query csQuery.Format (_T (\"INSERT INTO EFFECTS (EFFECT_NM,EFFECT_VALUE_NUM,EFFECT_DIR_NM,PROJECT_ID_SQ)[详细]
2023-01-26 01:15 分类:问答Insert multiple rows in Oracle using VB6
I am trying to insert multiple rows in a table using BeginTrans...CommitTrans. Below is code snippet: For i = 1 To 5[详细]
2023-01-25 05:57 分类:问答Why does this HQL delete fail, when an HQL select with same terms works?
Why does the following HQL query fail? string hql = @\"delete MyLog log where log.UtcTimestamp < :threshold and[详细]
2023-01-19 05:35 分类:问答Getting inserted ID after INSERT ... SELECT on Oracle
This SQL statement works if I run it from my Oracle client (SQL Developer): insert into Person (Name) select \'Bob\' from dual[详细]
2023-01-07 04:20 分类:问答PLS-00103: Encountered the symbol "end-of-file" in simple update block
The following Oracle statement: DECLARE ID NUMBER; BEGIN UPDATE myusername.terrainMap SET playerID = :playerID,tileLayout = :tileLayout[详细]
2023-01-04 04:57 分类:问答How to handle xpath in SQL query while programming in Java
I am trying to execute the SQL statement from my java application Due website restriction on url I have replaced http=htp for this post.[详细]
2022-12-31 05:23 分类:问答Oracle sql: using bind variable for dates
Here is a simple working query without bind variables: select * from table1 where time_stamp > sysdate - INTERVAL \'1\' day;[详细]
2022-12-30 09:10 分类:问答Update with self-join
I want to update a table to indicate that some rows are parents of others, so I added a \"parentid\" column to the table.The following query finds all the parents:[详细]
2022-12-22 02:24 分类:问答Oracle syntax error [duplicate]
This question already has answers here: How do I limit the number of rows returned by an Oracle query after ordering?[详细]
2022-12-21 08:11 分类:问答SQL Inner join on select statements
I am trying to make an inner join on a select statement like this: select * from (select* from barswhere rownum <= 10 )as tab1[详细]
2022-12-15 00:39 分类:问答