Cause: java.sql.SQLSyntaxErrorException: Unknown column 'orderbasetable_id' in 'field list'
时间: 2024-01-20 07:04:45 浏览: 184
java.sql.SQLSyntaxErrorException Unknown column 'name' in 'field list'.md
This error occurs when a SQL query is trying to reference a column that does not exist in the table being queried. In this case, the column 'orderbasetable_id' is not present in the table being queried.
To fix this error, you need to check the SQL query and make sure that the column 'orderbasetable_id' exists in the table being queried. If the column does not exist, you may need to add it to the table or modify the query to reference an existing column.
阅读全文