OrderColumn Constructor (UserDefinedFunction, String)
Creates a OrderColumn points to a column with an order that is specified within a table-valued function that was created by using CREATE FUNCTION and the ORDER BY clause.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Deklaracja
Public Sub New ( _
userDefinedFunction As UserDefinedFunction, _
name As String _
)
public OrderColumn (
UserDefinedFunction userDefinedFunction,
string name
)
public:
OrderColumn (
UserDefinedFunction^ userDefinedFunction,
String^ name
)
public OrderColumn (
UserDefinedFunction userDefinedFunction,
String name
)
public function OrderColumn (
userDefinedFunction : UserDefinedFunction,
name : String
)
Parameters
- userDefinedFunction
The UserDefinedFunction object that was created with CREATE FUNCTION and the ORDER BY clause.
- name
A name you wish to assign to the column.
Remarks
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
See Also