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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remove field 1

Status
Not open for further replies.

Kib

Programmer
May 17, 2001
58
US
Hi, How would I go about in code removing a specific field from a table. Thanks.
 
Hi Kib,

With SQL ..

Code:
DoCmd.RunSQL "ALTER TABLE
Code:
TableName
Code:
 DROP COLUMN
Code:
ColumnName
Code:
"

Enjoy,
Tony
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top