带有内连接的 SQL INSERT
我有一张表(住宿),其中包含有关度假屋的所有信息。公司 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是生成 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.