Oct 19, 2001 #1 jvande MIS Joined Jun 6, 2001 Messages 115 Location US I have a huge table and I want to determine how many fields I have. How do I find out how many fields are in the table.
I have a huge table and I want to determine how many fields I have. How do I find out how many fields are in the table.
Oct 19, 2001 1 #2 fluteplr Programmer Joined Oct 23, 2000 Messages 1,599 Location US Assuming either sql 7 or 2000 select count(*) from information_schema.columns where table_name = 'mytable' Upvote 0 Downvote
Assuming either sql 7 or 2000 select count(*) from information_schema.columns where table_name = 'mytable'