如何在select语句中声明变量
请看看这个查询。
select name form table
假设这会返回 100 条姓名记录。
我想将每个记录存储在变量中,然后在另一个选择
语句中使用该变量。也许我必须使用内部选择来完成此操作,但我不知道如何做。
这怎么可能?
我正在处理具有复杂连接的三个复杂查询,我使用产品代码并将它们传递给查询。如果第一个查询返回结果很好,否则我将转到第二个查询,否则转到第三个查询。我已经使用循环在 C# 中非常轻松地完成了此操作但需要很长时间(7000条记录大约需要5分钟) 现在,我将代码存储在变量中,如果结果计数大于 0,则将其传递给 SQL 中的第一个查询,否则我将移至第二个查询,否则移至第三个查询。因此我将迭代所有的productCode 记录。 `从产品销售中选择 *,其中产品名称如“%”;
Please look at this query.
select name form table
Let suppose this returns 100 name records.
I want to store each record in variable and then use this variable in another select
statement.Perhaps I have to do it with inner select but I do not know how.
How this is possible ?
I am working on three complex queries with complex joins I use the code of product and pass them to queries .If first query return the result fine else I move to second query else to third on.I have done this in c# very easily using loops but it is taking very much time(About 5 minutes for 7000 records)
Now I shall store the code in variable and pass it to first query in SQL if count of it result is greater than 0 fine else I move to 2nd else to third one. And so I shall iterate to all productCode Records. `select * from productsale where productname like' %';
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您不使用 JOIN 的原因吗?这通常是使用一个表中的值从其他表中提取值的最佳方法。
类似的东西
否则你会想使用游标。网上有很多很好的教程,您可能想找到特定于您正在使用的数据库版本的教程。
我希望这有帮助。
Is the a reason you're not using JOIN's? That is usually the best way to use a value in one table to extract values from other tables.
Something like
Otherwise you're looking to use cursors. There are a lot of good tutorials on the web, and you may want to find a tutorial specific the DB version you are using.
I hope this helps.