SQL:构建从文件读取的查询
我有一个表,其中包含列名称,添加,没有电话。 (数百万行) 我需要从表中提取一个名称列表(例如数百个)。 直接的方法是这样的...
select * from table where name = name1 or name = name2 .....or name = name300
我试图让它更简单, 我将姓名列表导入到另一个表中,例如表2。 然后我做了一个子查询。
select * from table where name like '%'+(select * from table2)+'%'
但它不起作用。
请帮助我如何有效地完成此任务。 感谢你。
i have a table with column name,add,no tel. ( millions of rows)
i need to pull a list of names ( like hundreds) from the table.
the straight forward way is like this...
select * from table where name = name1 or name = name2 .....or name = name300
i tried to make it more simpler,
i import the list of name into another table,say table2.
then i do a subquery.
select * from table where name like '%'+(select * from table2)+'%'
but it did not work.
please help how i can accomplish this efficiently.
thank u.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需连接两个表:
Just join the two tables: