If I create a Tabular like this one, how can I use TransformColumns (or other command) to add a column that has the value of the row number i.e. {1,2,3,4...}
t = Tabular[{{1, 7, 4}, {4, 5, 6}, {7, 8, 9}}, {"a", "b", "c"}]
TransformColumns[t, "RowNum"-> ?]
so that the table becomes
{{1, 7, 4}, {4, 5, 6}, {7, 8, 9}}, {"a", "b", "c"}, {1, 2, 3}}?