提示SQL:column 'bj' is not found 是啥 怎么解决?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提示SQL:column 'bj' is not found 是啥 怎么解决?相关的知识,希望对你有一定的参考价值。
SQL提示:列bj没有找到
你看看你的查询语句
1、当前链接数据库是否正确
2、SQL语句查询的表是否正确
3、核实你所查询的表里是否包含此bj列
参考技术A
在你的这个表里面,就是你执行sql的时候,执行的这张表,
你写了一个bj这个字段,但是这个字段在这个表里面根本没有找到。
就是这个错误了。
参考技术B
你查询的源里面没有BJ这个字段
参考技术C
你写的SQL语句中引用了不存在的列:bj
参考技术D
没找到这个字段啊,你看一下表的这个字段有莫有哦
sql view_column_report_1.sql
declare @schemaName nvarchar(100) = 'item'
declare @tableName nvarchar(100) = 'location'
declare @dataType nvarchar(100) = 'decimal'
select
s.name,
t.name,
c.name,
c.is_nullable,
st.name
from sys.columns c
inner join sys.tables t
on t.object_id = c.object_id
and t.name = @tableName
inner join sys.schemas s
on s.schema_id = t.schema_id
and s.name = @schemaName
inner join sys.types st
on st.system_type_id = c.system_type_id
and st.name = @dataType
以上是关于提示SQL:column 'bj' is not found 是啥 怎么解决?的主要内容,如果未能解决你的问题,请参考以下文章
数据库-省市对照表
网络爬虫findall()正则(.*?)不起作用,无返回
java运行时,提示需要'' class '' 或'' interface ‘’
odoo 返回成功提示信息
在matlab GUI中table读取EXCEL数据,为总提示为空?
tensorflow提示出错'module' object has no attribute 'pack'