Microsoft Access

  Home  Applications Programs  Microsoft Access


“Microsoft Office Access Interview Questions and Answers will guide us now that MS Access previously known as Microsoft Access, is a relational database management system from Microsoft that combines the relational Microsoft Jet Database Engine with a graphical user interface and software development tools. So learn Microsoft Access with Microsoft Office Access Interview Questions with Answers”



27 Microsoft Access Questions And Answers

21⟩ State some of the uses append query?

Some of the uses of append query are as follows

► You will save time by appending data to an existing table rather than manual update.

► Appending files based on specific criteria is possible.

► If your destination file doesn’t have columns and rows you can add certain columns and rows thus ignoring the rest of them.

► Append can save time and labor when dealing with large database updation.

 173 views

22⟩ How do you create an append query?

Append query can be used if you would like to add new rows of data to an already existing table. The process of creating an append query follows these steps they are.

► Basic step should be to create a select query

► After selecting the query you need to append the query

► Destination fields should be selected for each column in the query

► Records can be appended by using the function to run.

 231 views

23⟩ State some criteria s and their effects on a database?

It is possible to enter one or more criteria in the rows which can affect your database significantly.

>=”Callahan” this returns all the various records from Callahan to the end of the alphabet.

Date() This field returns all the data pertaining to the current date.

‘’’’ This is used when you want to know all records which contain zero length string. This can be useful to know whether your customers have fax numbers or so.

 171 views

25⟩ Explain about relationships and look up fields?

Relationships are imported from the source to destination without any hindrance but once they land in the destination they can never be altered or changed and change of extensions cannot be of much help.

Lookup fields: -Make sure that you link tables, links, etc if you want to display look up values and not look up ids. Related table should be linked to the destination field for display of lookup values.

 190 views

27⟩ I am designing an Access database form. How can I get my next control in the form to be automatically selected?

By default, Access waits until you press Enter before it selects the Next control on your form. However, this is a wasted keystroke you can eliminate by setting each control's Auto Tab property to Yes. This Property also requires that you set an input mask. Once the data you're entering satisfies the input mask, the Auto Tab property Automatically selects the form's next control. We don't recommend you Use this feature unless you can apply it consistently; otherwise you'll just confuse your users, who won't know when to press Enter.

 219 views