Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create MS Access table through Queryman

Status
Not open for further replies.

Lesio

MIS
Jan 7, 2003
48
US
Anybody knows the SQL syntax to create table in MS Access ? Cannot do it in Access directly bc. of version mismatch.
 
If you're looking for the Access syntax for a make table query it is:

SELECT Table1.[field1], Table1.[field2], Table1.[field3] INTO my_table
FROM Table1;

or

SELECT Table1.* INTO my_table
FROM Table1;

This of course differs from the actual sql syntax for making a table which is:

create table my_table as
select * from Table1;

-Tracy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top