如何在select语句中声明变量

发布于 2024-10-30 03:50:29 字数 424 浏览 0 评论 0原文

请看看这个查询。

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

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

发布评论

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

评论(1

抱着落日 2024-11-06 03:50:29

这是您不使用 JOIN 的原因吗?这通常是使用一个表中的值从其他表中提取值的最佳方法。

类似的东西

   select name , dept from name_table nt, dept_table dt
   where nt.name = dt.name

否则你会想使用游标。网上有很多很好的教程,您可能想找到特定于您正在使用的数据库版本的教程。

我希望这有帮助。

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

   select name , dept from name_table nt, dept_table dt
   where nt.name = dt.name

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.

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