Sc_select : can i find the name of the field?

with sc_select(exp, “SELECT * FROM ANAGM“);
i find the value of the second field in this way:
$DT = {exp}->fields[1];
now i want to store in a variable the name of this second field ex “date_start“
is it possible?
TKS

i have found this code for php but i don’t know if it’s integrable with sc_select:
/ Displaying MS SQL Server Column Names and Values via PHP
$meta = mssql_fetch_field($result, $i);
echo ´´. $meta->name . ´´;

someone can help me?
TKS