SQL:构建从文件读取的查询

发布于 2024-11-14 08:15:07 字数 361 浏览 2 评论 0原文

我有一个表,其中包含列名称,添加,没有电话。 (数百万行) 我需要从表中提取一个名称列表(例如数百个)。 直接的方法是这样的...

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 技术交流群。

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

发布评论

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

评论(1

水波映月 2024-11-21 08:15:07

只需连接两个表:

Select a.* from tableA a join tableB b on a.name = b.name

Just join the two tables:

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