S SirPoonga Feb 23, 2005 #1 What is the code to create a table using SQL in Access? In VBA I want to make a table and define field properties.
What is the code to create a table using SQL in Access? In VBA I want to make a table and define field properties.
M [MVP] S.Clark Feb 23, 2005 #2 You can use DDL - Data Definition Language or the Create method for Tabledef object. See the help file example in the Tabledef object help page thingy. mkMSITStore:C:\Program%20Files\Common%20Files\Microsoft%20Shared\OFFICE11\1033\dao360.chm::/damthcreatetabledefx.htm
You can use DDL - Data Definition Language or the Create method for Tabledef object. See the help file example in the Tabledef object help page thingy. mkMSITStore:C:\Program%20Files\Common%20Files\Microsoft%20Shared\OFFICE11\1033\dao360.chm::/damthcreatetabledefx.htm
A Andi Mayer.. Feb 23, 2005 #3 What is the code to create a table using SQL in Access? In VBA I want to make a table and define field properties. Click to expand... CREATE TABLE MyTable (myField1 Text) more in the help (Microsoft Jet SQL Reference)
What is the code to create a table using SQL in Access? In VBA I want to make a table and define field properties. Click to expand... CREATE TABLE MyTable (myField1 Text) more in the help (Microsoft Jet SQL Reference)