I have a table containing three rows and three columns. I want to know the type of column three. What will be the power query for getting this?
= Table.FromRows(
{
{101, "Tom", "999-6667"},
{102, "John", "886-0544"},
{103, "Peter", "776-8899"}
},
{"CID", "Name", "Code"}
)