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!

How to create table and delete it??

Status
Not open for further replies.

Fekri

Programmer
Jan 3, 2004
284
IR
Hi,

how to make table and also how to delete the table??

thanks
 
how to make table
either with a maketable query (SELECT ... INTO ...)
or with DDL code (CREATE TABLE ...)
how to delete the table
with DDL code (DROP TABLE ...)

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Hi,

what is DDl code

how should made DDL code???
is it like DAO to have some procedure to write it??
and can I put DDL code in an event code???

thanks
ali
 
DDL is the part of SQL standing for Data Definition Language
You may execute such code with DoCmd.RunSQL or CurrentDB.Execute or ...

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top