Oct 21, 2004 #1 2314 Programmer May 19, 2001 69 IN how do i create a copy of a table using sql select statement
Oct 21, 2004 1 #2 RobertT687 Programmer Apr 2, 2001 425 US SELECT * INTO copyofyourtable FROM originaltable Note: Tis does NOT recreate any keys or indexes. It just copies the structure and data. Upvote 0 Downvote
SELECT * INTO copyofyourtable FROM originaltable Note: Tis does NOT recreate any keys or indexes. It just copies the structure and data.