910 questions
In Access, you can't use SQL for that.
Use DAO to open the table and read the data types of the fields looping the Fields collection of the table.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want a query that returns the column names and data type for each column in access
This is a code in Oracle, the same idea in Access How
select COLUMN_NAME, DATA_TYPE from user tab columns where table name=your table name
In Access, you can't use SQL for that.
Use DAO to open the table and read the data types of the fields looping the Fields collection of the table.