In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
The editor will share with you how to solve the problem of unknown column in where clause. I hope you will gain a lot after reading this article. Let's discuss it together.
Anyone who has written a sql statement may have encountered a problem similar to Unknown column 'xxx' in' where clause'. If we take it literally, we can easily come to the conclusion that the listing does not exist. This shows that the sql statement is not written correctly and needs to be checked and modified.
However, in many cases, the start is not caused by a column name error.
It is caused by the lack of quotation marks around the character type data when piecing together the sql statement.
Example:
String sql= "select age from user where name=" + xxx+ "
Set the value of name to columName, the error is as follows:
Unknown column 'xxx' in' where clause'
Resolution steps:
There will be no error in sql if name is an integer, and if the string type in sql must be enclosed in quotation marks.
So change the sql to
String sql= "select age from user where name='" + xxx+ "'"
The error disappears.
After reading this article, I believe you have a certain understanding of how to solve the problem of unknown column in where clause, want to know more about it, welcome to follow the industry information channel, thank you for reading!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.