Results 1 to 2 of 2

Thread: Removal without deletion

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 1999
    Posts
    80

    Post

    Hi,

    How do I remove a record from a recordset without actually deleting it from the actual database itself?

    I am using the Delete method.

    Thanks in advance.

  2. #2
    Frenzied Member
    Join Date
    Aug 1999
    Location
    Santa Clara, Ca , 95058
    Posts
    1,105

    Post

    Copy the data to another table:

    insert into table2
    select * from table 1
    where unique_condition

    delete from table2 where unique_condition

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width