从多个表连接 mysql 4.0 数据的最快方法?
我有 3 个 mysql 4.0 表:都有字段 ID(int)、type(int) 和另一个字段 value 可以是 varchar(255)、tinyint 或 int。
我需要将它们全部写出来,最终得到三个 DataTable,循环它们,并在临时表中创建行(在 .NET 1.1 中)。
您是否看到比这更快/更干净的方法来加入或只是写出这些数据?
I have 3 mysql 4.0 tables: all have fields ID(int), type(int) and another field, value which is either varchar(255), tinyint or int.
I need to write them all out and I end up getting three DataTables, looping over them, and creating rows into a temporary table (in .NET 1.1).
Do you see any faster/cleaner way than this to join or just write out this data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您是否想要在一个查询中实际加入或显示所有三个表的结果。
如果您只是想要平坦的结果,那么最好的方法是进行联合,例如:
注意:我正在进行转换,以便您可以获得所有三个字段的最稳定的形式(varchar 版本)。
I am not sure if you are wanting to actually join or display the results from all three tables in one query.
If you are just wanting flat out results, your best best would be to do a union such as:
Note: I am doing the convert so that you can get the most stable form (the varchar version) of all three of your fields.