[ic] Field names?

Dave Turk interchange-users@icdevgroup.org
Thu Jun 13 11:53:01 2002


> Hi,
> 
> can anybody help me:
> how can I get the fields names of a table (database)?
> 
> Thanks
> 
> Zsolt

Which table from what type of database? You must be more specific.
For MySQL you could use this. #>mysql -p
mysql>use yourdatabase_name;
mysql>show tables;
mysql>show columns from table_name;

Dave Turk