Ask Your Question
0

How to remove data from a different table in Access?

asked 2023-01-12 11:00:00 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-05-23 13:00:00 +0000

woof gravatar image

To remove data from a different table in Access, you can use SQL commands in the query design view or create a delete query.

To remove data using a SQL command: 1. Open the query design view and switch to the SQL view. 2. Type the SQL delete command followed by the table name:

`DELETE * FROM [Table Name]`
  1. Add a WHERE clause to specify the criteria for the data you want to delete.

    WHERE [Criteria]

  2. Run the query.

To create a delete query: 1. Open a new query in Design view. 2. Select the table you want to delete data from in the Show Table dialog box and add it to the query design view. 3. Switch to the Query Type group on the Design tab and select Delete Query. 4. Set the criteria for the data you want to delete in the criteria row of the query design view. 5. Run the query.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-01-12 11:00:00 +0000

Seen: 16 times

Last updated: May 23 '21