表中的列可以从 SQL Server 中的另一个表中获取数据吗
我有一个表 PatientChartImages。它有一个 ChartImage 列,其中包含图像的二进制文件。现在,我们计划创建一个单独的表,其中包含图像的二进制文件,并将连接两个表以获取必要的数据。现在,我们不想更改前端,并且我无法使用触发器。那么,如果查询引用 PatientChartImages 的 ChartImage 列,有什么方法可以从第三个表中选取数据吗?请建议。
I have a table PatientChartImages. It has a column ChartImage, which contains the binary of images. Now, we are planning to create a separate table which will contain the Binary of Images and will join both the tables to get requisite data. Now, we do not want to change the front end and I cannot use triggers. So, is there any way by which if a query refers to ChartImage column of PatientChartImages, it picks data from the third table? Please suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为内部联接可以做到这一点。我只是无意中听说它的用途 - 但这可能会引导您找到答案。
I think inner-join does this. I've only overheard it's use - but this might lead you towards your answer.