带有内连接的 SQL INSERT

发布于 2024-10-29 12:21:26 字数 348 浏览 4 评论 0原文

我有一张表(住宿),其中包含有关度假屋的所有信息。公司 ID 名称等 我有另一个表(时间表),其中包含时间表 ID、日期和价格 我有一个最终表,将两个 (SchdAccom) 与 schdaccom id、AccomodationID 和 Schdule ID 连接起来。

这允许我通过将度假屋的 id 与日期 id 链接来添加度假屋可供使用的日期,并且 1 个度假屋可以与多个日期/价格链接。

这是我的问题,我可以查询这个问题,没有问题很好,但我不确定如何插入新的。例如,当您作为管理员选择度假屋时,单击按钮即可查看日期,网格视图会提取此信息。我希望能够添加更多日期,但表适配器不会生成插入代码。

关于如何解决这个问题有什么想法吗?

I Have a Table (Accommodation) with All information about a holiday home. Inc ID Name etc.
I have another Table (Schedule) with a Schedule ID, Date and Price
I have a final table to join the two (SchdAccom) with A schdaccom id, the AccomodationID and Schdule ID.

What this allows is me to add dates a holiday home is available for use by linking its id with an id of a date and 1 home can link with many dates/price.

Heres my issue I can query this fine no problem works great but im unsure how to go about inserting new ones. For instance, at the moment you as an admin select the holiday home click a button to see the dates and a gridview pulls this info. I want to be able to add more dates but the tableadapter wont generate insert code.

Any idea on how to go about this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若有似无的小暗淡 2024-11-05 12:21:26

最好的方法是生成 SQL,在提交请求时将数据注入到两个表中。因为您正在使用两个不同的表,所以您将必须编写一些手动代码。

The best method would be to generate SQL that would inject data into both tables when you submit the request. Because you're working with 2 different tables, you're going to have to write a bit of manual code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文