
Getting all tables and fields from the database
has anyone written an SQL query that I could run on a database that will
return a resultset of rows that are all the field names from user defined
tables in my database,
I would like something like this...
TableName FieldName PrimaryKey
tableA field1 true
tableA field2 false
tableA field3 false
tableB field1 true
tableB field2 false
Can anyone offer me any help.
TIA
Martin