Performance with Table As Is.
Well, before anyone can evaluate that code, perfomance-wise, we need the create table statement, including the indices.
Higher Class of Performance.
Pivoting is a function of expressing the data available in rows, in columns. If the database (table) is say, normalised to 3NF or 5NF, which is row-oriented, then performing columnar functions on row objects is going to be slow. Nothing to do with the product. If you want columnar access at speed (for Pivoting or any other columnar function), you need the data in 6NF. That also happens to make the SQL required for the task much more straight-forward.
If your data modeller prepared the table for pivoting (typically data warehouse type usage; Dimension-Fact structure), then it may not be true 6NF, but at least it will be better than 5NF, and easier to extract Pivoted values. When I see the DDL, I will be able to determine what it is (true 6NF; better than 5NF but not 6NF). Then I can determine if you are using the best code to obtain what you need.
It is only slow or "expensive" when the table is not in 6NF.
At this stage, from your code, it does not even look like a Pivot (using the standard meaning of the term), it looks like a MAX()of various values (calling the resulting column Pivotx does not make it a Pivot); and you are reading every row, once. That is, you have a procedural mindset, not a Pivoting or set-oriented mindset. Therefore, the code is likely not to get the values you require (whether it performs well or not, is a separate issue).
Your use of GROUP BY confirms the procedural approach to the non-procedural set, and that is going to be slow (creates worktables; which will be huge if your data is huge), and the same info can be obtained much faster via the Dimensions. Why don't you use the dimension tables for this pivotable table ? Post either the DDL for all Dimension tables that are related to this table, or the Data Model.
Response to Comments
I am trying to help you, but there are two obstacles. First, 19 days between interactions. Second, your posted SQL will not work: for each row, it returns the same ColValue in 11 columns; I cannot figure out the purpose of your use of MAX(). Therefore I am still at a loss as to what you intend (not what you have coded). The obfuscation is fair enough, but here we have lost the meaning.
Yes, there are faster ways, but I need to understand the intent, and the parent tables (eg. do you have a table where (Col1, Col2) is Unique ? If it is a database, then tables do not stand alone, they are related, and the relations have some purpose. I realise you do not think they are relevant, but that limitation has produced the code you have posted; the solution is beyond that limitation.
Anyway, in order to avoid further delay, please try this code. It is just a guess, doesn't appear correct to me, because (Col1, Col2, TypeId) is Unique; therefore there will be only one TypeId for each Col1, Col2 result row:
SELECT Col1,
Col2,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 1 ) as Latest_1,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 2 ) as Latest_2,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 3 ) as Latest_3,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 4 ) as Latest_4,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 5 ) as Latest_5,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 6 ) as Latest_6,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 7 ) as Latest_7,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 8 ) as Latest_8,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId= 9 ) as Latest_9,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId=10 ) as Latest_10,
( SELECT ColValue FROM RowTable WHERE Col1=o.Col1 AND Col2=o.Col AND TypeId=11 ) as Latest_11
FROM RowTable o -- for "outer"
GROUP BY Col1, Col2
And perhaps your can give me feedback on that.
If this is what you are looking for, then yes, it is a Pivot, an ugly and slow one, from an Unnormalised database; not a clean-but-slow Pivot from a 5NF database; not a clean-and-fast Pivot from a 6NF database.