Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个被调用的标量值函数,它在表中给出了一个新的列值,现在我想将这个新列值加入到我在 sql server 2005 中作为派生表添加的新表的列中。
您当然可以在 a 中使用该函数JOIN,如下所示:
JOIN
SELECT {fieldlist} FROM {tablename} a JOIN {tablename} b ON b.{fieldname} = dbo.{functionname}({parameters})
但是,正如 Joe 所说,一个代码示例会使这在理论上变得不那么理论化,并且对社区的其他人更有用。