Make Table Query - Find Table Name

ashley25

Registered User.
Local time
Today, 21:27
Joined
Feb 17, 2013
Messages
46
How can you determine the name of a table that has/is going to be created by a make-table?
 
When you run a make table query, you have to give the table a name.
The syntax of a make table query is shown below:
Code:
SELECT [OneField], [AnOtherField], .... INTO [TheNewTableName]
FROM [Atable];
 
If you look at the 'Destination Table' property in the properties of the query then this will state the table that will be created.

Open the query in design mode, right-click in the grey area above the grid and select properties.
 

Users who are viewing this thread

Back
Top Bottom