是否可以查询“where”的同义词?条款?
是否可以使用“where”子句查询同义词? 示例:从 Server_info 中选择 *,其中 sid='123456'; Server_info 是同义词。 Server_info 是表 server_details 的同义词。
Is it possible to query a synonym with "where" clause?
Example : Select * from Server_info where sid='123456';
Server_info is synonym.
Server_info is sysnonym for table server_details.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这当然是可能的,前提是名为 server_details 的表实际存在并且您已被授予对它的选择权(或者它属于您)。
Yes, this is certainly possible, provided a table named server_details actually exists and you have been granted select right on it (or it belongs to you).