sql中的动态表

发布于 2024-07-14 03:10:03 字数 36 浏览 3 评论 0原文

有没有在sql server 2000中创建动态表的方法?

Is there any method for creating dynamic tables in sql server 2000?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

可遇━不可求 2024-07-21 03:10:03

您可以通过在临时表前添加 octothorp (#) 来创建临时表,也可以使用以 @ 符号为前缀的表变量。

create table #tempTable (col1 char(1)) -- 临时表

declare @tempTableVariable table (col1 char(1)) -- 表变量

From http://www.sqlteam.com/article/temporary-tables

  • 如果通常少于 100 行使用表变量。 否则使用临时表。 这是因为 SQL Server 不会创建表变量的统计信息。
  • 如果需要在其上创建索引,则必须使用临时表。
  • 使用临时表时,请始终创建它们并创建任何索引,然后使用它们。 这将有助于减少重新编译。 从 SQL Server 2005 开始,这种影响有所减弱,但这仍然是一个好主意。

You can create temporary tables by prefixing them with an octothorp (#), or you can use table variables which are prefixed with the @ symbol.

create table #tempTable (col1 char(1)) -- Temporary table

declare @tempTableVariable table (col1 char(1)) -- Table variable

From http://www.sqlteam.com/article/temporary-tables

  • If you have less than 100 rows generally use a table variable. Otherwise use a temporary table. This is because SQL Server won't create statistics on table variables.
  • If you need to create indexes on it then you must use a temporary table.
  • When using temporary tables always create them and create any indexes and then use them. This will help reduce recompilations. The impact of this is reduced starting in SQL Server 2005 but it's still a good idea.
挽容 2024-07-21 03:10:03

这是返回表变量的用户定义函数的示例:

CREATE FUNCTION getDynamicTable () 
RETURNS     
    @output table (
        id int identity,
        value nvarchar(50)
    )
AS
BEGIN

    insert into @output (value) 
    values ('test 1')

    insert into @output (value) 
    values ('test 2')

    return
END

希望这有帮助

Here is an example of a user defined function that returns a table variable :

CREATE FUNCTION getDynamicTable () 
RETURNS     
    @output table (
        id int identity,
        value nvarchar(50)
    )
AS
BEGIN

    insert into @output (value) 
    values ('test 1')

    insert into @output (value) 
    values ('test 2')

    return
END

Hope this helps

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