What does the following Oracle error mean: invalid column index

后端 未结 8 1000
你的背包
你的背包 2020-12-17 08:09

I got the following error while testing some code:

SQLException: Invalid column index

What exactly does that mean?

Is

8条回答
  •  执念已碎
    2020-12-17 08:34

    It sounds like you're trying to SELECT a column that doesn't exist.

    Perhaps you're trying to ORDER BY a column that doesn't exist?

    Any typos in your SQL statement?

提交回复
热议问题