The sample code above includes:
/* Create a table type. */
CREATE TYPE LocationTableType AS TABLE
( LocationName VARCHAR(50)
, CostRate INT );
GO
If one wanted to take advantage of an existing table definition... is it possible to pass in a TABLE (or subset thereof) insead of a user-defined table type?