answersLogoWhite

0


Best Answer

Select queries do not change the data. They will show lists of data and various statistics and other requirements. Action queries do things like update records or delete records, which is changing the data. That is the difference.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How is an action query is different from select query?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What can a select query do?

Select query come under the category of DRL (data retrieval language). A select query is used to retrieve data from DB.


What is select query?

Select query is a DRL. DRL stands for Data retrieval language. Example select * from table_name;


What is a select query?

Select query is a DRL. DRL stands for Data retrieval language. Example select * from table_name;


What is a complex query in Microsoft access?

A select query with multiple criteria


What does a query allow you to do on a database?

a query allows you to select certain data


When would you use a crosstab query instead of a select query?

A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.A crosstab query is a type of select query, but it displays the data in a different layout. A crosstab query can present data in a tabular layout which can sometimes be easier to follow than the way a standard select query does, although they will both show the same data. Say you were counting the amount of males and females that worked in each department of a company. A crosstab query will present the data in a table, maybe having the male and female headings at the top over 2 columns and the names of the departments down the side for each row. A Select query will take more lines to present the data. So for those kinds of situations using a crosstab query is better.


When do you perform denormalization?

Generally to optimize the performance of select query. To minimize joins used in the query.


action query?

performs an action on the table on which it is based


What does a query do on a database?

it allows you to select certain data


How do you select unique values from a MySQL database?

Use the SQL Query below to get unique or distinct values for a field in a MySQL Table. You can choose different values for one or more columns with SELECT DISTINCT(column name) FROM your table name. The names of the columns must be separated by a comma. To learn more about data science please visit- Learnbay.co


How do I create a SQL Select query that will return the number of columns not rows in my query result. So if my query returns 1 row with 5 columns I want the query to generate the number 5.?

I have the same question but well a not-so-elegant solution would be to define a view within your DBMS e.g. CREATE VIEW view_name AS (SELECT ...your_query) and then apply a SELECT COUNT(*) FROM view_name


What is a query that extracts data from a table which meets certain specified criteria?

If the criteria is entered in by the user as the query is run, by prompting the user, then it is a Parameter query. Criteria can also be built direct into the query in which case it is a standard Select query.