惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
罗磊的独立博客
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Last Week in AI
Last Week in AI
美团技术团队
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
D
Docker
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
月光博客
月光博客
L
LINUX DO - 最新话题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
W
WeLiveSecurity
H
Heimdal Security Blog
Vercel News
Vercel News
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
TaoSecurity Blog
TaoSecurity Blog
T
Troy Hunt's Blog
A
About on SuperTechFans
C
Check Point Blog
S
Security Affairs
Hacker News - Newest:
Hacker News - Newest: "LLM"
AI
AI
WordPress大学
WordPress大学
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Help Net Security
Help Net Security
博客园_首页
The Last Watchdog
The Last Watchdog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
I
Intezer
K
Kaspersky official blog
M
MIT News - Artificial intelligence
J
Java Code Geeks
G
GRAHAM CLULEY
P
Palo Alto Networks Blog

博客园 - zzh5945

桌面上IE图标不见了怎么办? Microsoft JET Database Engine 错误 '80004005' 完整解决办法 NTLDR - zzh5945 - 博客园 如何在企业管理器里面把非NULL值改为NULL值 虚拟机网络连接方式和网络设置 Excel中按方向不能移动单位格 禁止master扩展存储过程xp_cmdshell命令 关于HttpWebRequest发生服务器协议冲突的解决办法 查询远程数据库 无法在WEB服务器上启动调试.未能启动ASP.NET或ATL SERVER 调试 网上邻居的内容不会自动刷新的解决方案? 更改网上邻居的登陆信息 两招轻松找回遗忘的WinXP管理员密码 如何去掉DataTable中的重复行 一款能够自动上传文件到ftp服务器的软件 怎样能使winform窗体的大小固定住,不能调整其大小 怎样让SQL只显示用户表 VS2005中解决方案管理器中看不到解决方案节点的解决办法 解密存储过程的存储过程
查询指定的字段所在的表
zzh5945 · 2008-09-17 · via 博客园 - zzh5945

只知道字段名,不知道字段在哪个表里,比如要查询字段 sitename 所在的表

可以使用下面的语句查询

select   object_name(id)   as   tablename   from   syscolumns   where   name= 'sitename'