一键重装系统工具 | U盘启动盘制作工具 | 误删文件恢复软件 | 硬盘数据抢救专家 | 电脑蓝屏修复助手 | C盘空间清理神器 | 电脑驱动离线安装工具 | 微信聊天记录恢复工具 | 照片误格式化恢复 | 电脑密码破解清除工具 | 系统崩溃紧急救援盘 | 电脑加速优化大师 | 电脑开不了机怎么重装系统 | 回收站清空了怎么恢复 | 硬盘分区丢失数据恢复 | 电脑卡顿重装系统有用吗 | U盘插入提示格式化数据恢复 | 电脑中毒文件被隐藏恢复 | 忘记电脑开机密码怎么办 | 新硬盘分区对齐工具 | 旧电脑装Win10流畅工具 | SD卡照片删除恢复免费版 | 移动硬盘打不开提示损坏修复 | 电脑无故重启系统修复工具 | 电脑小白一键重装神器 | 程序员电脑环境配置助手 | 设计师电脑字体/素材恢复工具 | 网吧网管系统维护工具箱 | 财务人员电脑发票备份恢复 | 学生党免费电脑系统安装包 | 电脑维修师傅必备工具盘 | 游戏玩家电脑性能优化助手 | 办公白领误删文档恢复软件 | 自媒体视频素材恢复工具 | 网课录制视频损坏修复工具 | 最好的U盘PE系统排名 | 数据恢复软件哪个最强 | 免费电脑助手与收费版区别 | 国产装机工具哪款无广告 | 离线版驱动助手推荐 | 轻量级电脑优化工具对比 | 支持NVMe驱动的PE工具 | 带网络功能的应急启动盘 | 2026最新版万能装机工具 | 支持Win11 24H2的PE工具 | 最新免激活系统重装工具 | 2026数据恢复软件破解版合集 | 纯净无捆绑装机助手V3.0 | 支持苹果M芯片的电脑助手 | 秋季更新版系统维护工具箱 | 电脑系统崩了怎么用U盘把重要资料拷贝出来 | 重装系统前哪些文件夹必须备份 | 固态硬盘误格式化还能恢复数据吗 | 如何制作一个既带PE又能存数据的双分区U盘 | 电脑总是弹窗广告用什么助手彻底拦截 后台管理
📢 欢迎访问系统之家!所有资源均经过安全检测。

Introduction to queries

发布时间:2026-09-05 | 浏览:2
📥 下载地址(文章开头)
装机神器,可以安装一切系统。
Using a query makes it easier to view, add, delete, or change data in your Access database. Some other reasons for using queries: Find specific quickly data by filtering on specific criteria (conditions) Find specific quickly data by filtering on specific criteria (conditions) Calculate or summarize data Calculate or summarize data Automate data management tasks, such as reviewing the most current data on a recurring basis. Automate data management tasks, such as reviewing the most current data on a recurring basis. Queries help you find and work with your data Queries help you find and work with your data Create a select query Create a select query Create a parameter query Create a parameter query Create a totals query Create a totals query Create a crosstab query Create a crosstab query Create a make table query Create a make table query Create an append query Create an append query Create an update query Create an update query Create a delete query Create a delete query Queries help you find and work with your data In a well-designed database, the data that you want to present through a form or report is usually located in multiple tables. A query can pull the information from various tables and assemble it for display in the form or report. A query can either be a request for data results from your database or for action on the data, or for both. A query can give you an answer to a simple question, perform calculations, combine data from different tables, add, change, or delete data from a database. Since queries are so versatile, there are many types of queries and you would create a type of query based on the task. Create a select query If you want to review data from only certain fields in a table, or review data from multiple tables simultaneously or maybe just see the data based on certain criteria, a select query type would be your choice. For more information, see create a simple select query . Review data from select fields For example, if your database has a table with a lot of information about products and you want to review a list of products and their prices, here's how you'd create a select query to return just the product names and the respective price: Open the database and on the Create tab, click Query Design . On the Tables tab, double-click the Products table. In the Products table, let's say that you have Product Name and List Price fields. Double-click the Product Name and List Price to add these fields to the query design grid. On the Query Design tab, click Run . The query runs, and displays a list of products and their prices. Review data from multiple related tables simultaneously For example, if you have a database for a store that sells food items and you want to review orders for customers who live in a particular city. Say that the data about orders and data about customers are stored in two tables named Customers and Orders respectively. If each table has a Customer ID field, which forms the basis of a one-to-many relationship between the two tables. You can create a query that returns orders for customers in a particular city, for example, Las Vegas, by using the following procedure: Open the database. On the Create tab, in the Query group, click Query Design . On the Tables tab, double-click Customers and Orders . Note the line (called a join) that connects the ID field in the Customers table and the Customer ID field in the Orders table. This line shows the relationship between the two tables. In the Customers table, double-click Company and City to add these fields to the query design grid. In the query design grid, in the City column, clear the check box in the Show row. In the Criteria row of the City column, type Las Vegas . Clearing the Show check box prevents the query from displaying the city in its results, and typing Las Vegas in the Criteria row specifies that you want to see only records where the value of the City field is Las Vegas. In this case, the query returns only the customers that are located in Las Vegas. You don't need to display a field to use it with a criterion. In the Orders table, double-click Order ID and Order Date to add these fields to the next two columns of the query design grid. On the Query Design tab, in the Results group, click Run . The query runs, and then displays a list of orders for customers in Las Vegas. Press CTRL+S to save the query. Create a parameter query If you frequently want to run variations of a particular query, consider using a parameter query. When you run a parameter query, the query prompts you for field values, and then uses the values that you supply to create criteria for your query. Continuing from the previous example where you learnt to create a select query that returns orders for customers located in Las Vegas, you can modify the select query to prompt you to specify the city each time that you run the query. To follow along, open the database that you created in the previous example: In the Navigation Pane, right-click the query named Orders by City (that you created in the previous section), and then click Design View on the shortcut menu. In the Navigation Pane, right-click the query named Orders by City (that you created in the previous section), and then click Design View on the shortcut menu. In the query design grid, in the Criteria row of the City column, delete Las Vegas , and then type [For what city?] . The string [For what city?] is your parameter prompt. The square brackets indicate that you want the query to ask for input, and the text (in this case, For what city? ) is the question that the parameter prompt displays. Note Neither a period ( ⁠.⁠ ) nor an exclamation point ( ⁠!⁠ ) can be used as text in a parameter prompt. In the query design grid, in the Criteria row of the City column, delete Las Vegas , and then type [For what city?] . The string [For what city?] is your parameter prompt. The square brackets indicate that you want the query to ask for input, and the text (in this case, For what city? ) is the question that the parameter prompt displays. Neither a period ( ⁠.⁠ ) nor an exclamation point ( ⁠!⁠ ) can be used as text in a parameter prompt. Select the check box in the Show row of the City column, so that the query results will display the city. Select the check box in the Show row of the City column, so that the query results will display the city. On the Query Design tab, in the Results group, click Run . The query prompts you to enter a value for City. On the Query Design tab, in the Results group, click Run . The query prompts you to enter a value for City. Type New York , and then press ENTER to see orders for customers in New York. What if you don't know what values you can specify? You can use wildcard characters as part of the prompt: Type New York , and then press ENTER to see orders for customers in New York. What if you don't know what values you can specify? You can use wildcard characters as part of the prompt: On the Home tab, in the Views group, click View , and then click Design View . On the Home tab, in the Views group, click View , and then click Design View . In the query design grid, in the Criteria row of the City column, type Like [For what city?]&"*" . In this parameter prompt, the Like keyword, the ampersand ( ⁠&⁠ ), and the asterisk ( * ) enclosed in quotation marks allow the user to type a combination of characters, including wildcard characters, to return a variety of results. For example, if the user types * , the query returns all cities; if the user types L , the query returns all cities that start with the letter "L;" and if the user types *s* , the query returns all cities that contain the letter "s." In the query design grid, in the Criteria row of the City column, type Like [For what city?]&"*" . In this parameter prompt, the Like keyword, the ampersand ( ⁠&⁠ ), and the asterisk ( * ) enclosed in quotation marks allow the user to type a combination of characters, including wildcard characters, to return a variety of results. For example, if the user types * , the query returns all cities; if the user types L , the query returns all cities that start with the letter "L;" and if the user types *s* , the query returns all cities that contain the letter "s." On the Query Design tab, in the Results group, click Run , and at the query prompt, type New , and press ENTER. The query runs, and then displays orders for customers in New York. On the Query Design tab, in the Results group, click Run , and at the query prompt, type New , and press ENTER. The query runs, and then displays orders for customers in New York. Specify parameter data types You can also specify what type of data a parameter should accept. You can set the data type for any parameter, but it is especially important to set the data type for numeric, currency, or date/time data. When you specify the data type that a parameter should accept, users see a more helpful error message if they enter the wrong type of data, such as entering text when currency is expected. If a parameter is set to accept text data, any input is interpreted as text, and no error message is displayed. To specify the data type for parameters in a query, use the following procedure: With the query open in Design view, on the Query Design tab, in the Show/Hide group, click Parameters . In the Query Parameters dialog box, in the Parameter column, type the prompt for each parameter for which you want to specify the data type. Make sure that each parameter matches the prompt that you use in the Criteria row of the query design grid. In the Data Type column, select the data type for each parameter. For more information, see using parameters to ask for input when running a query . Create a totals query The Total row in a datasheet is very useful, but for more complex questions, you use a totals query. A totals query is a select query that allows you to group and summarize data, like when you want to see total sales per product. In a totals query, you can use the Sum function (an aggregate function), to see total sales per product. Use the following procedure to modify the Product Subtotals query that you created in the previous example so that it summarizes product subtotals by product. On the Home tab, click View > Design View . The Product Subtotals query opens in Design view. On the Query Design tab, in the Show/Hide group, click Totals . The Totals row is displayed in the query design grid. Although they have similar names, the Totals row in the design grid and the Total row in a datasheet are not the same: You can group by field values by using the Totals row in the design grid. You can add a datasheet Total row to the results of a totals query. When you use the Totals row in the design grid, you must choose an aggregate function for each field. If you do not want to perform a calculation on a field, you can group by the field. In the second column of the design grid, in the Total row, select Sum from the drop-down list. On the Query Design tab, in the Results group, click Run . The query runs, and then displays a list of products with subtotals. Press CTRL+S to save the query. Leave the query open. For more information, see Display column totals in a datasheet using a Totals row . Make calculations based on your data You usually would not use tables to store calculated values, like subtotals, even if they are based on data in the same database, because calculated values can become outdated if the values that they are based on changes. For example, you would not store someone's age in a table, because every year you would have to update the value; instead, you store the person's date of birth, and then use a query to calculate the person's age. For example if you have a database for some products you'd like to sell. This database has a table called Orders Details that has information about the products in fields such as, price of each product and the quantities. You can calculate the subtotal by using a query that multiplies the quantity of each product by the unit price for that product, multiplies the quantity of each product by the unit price and discount for that product, and then subtracts the total discount from the total unit price. If you created the sample database in the previous example, open it and follow along: On the Create tab, click Query Design . On the Tables tab, double-click Order Details . In the Order Details table, double-click Product ID to add this field to the first column of the query design grid. In the second column of the grid, right-click the Field row, and then click Zoom on the shortcut menu. In the Zoom box, type or paste the following: Subtotal: ([Quantity]*[Unit Price])-([Quantity]*[Unit Price]*[Discount]) On the Query Design tab, click Run . The query runs, and then displays a list of products and subtotals, per order. Press CTRL+S to save the query, and then name the query Product Subtotals . For more information, see Display column totals in a datasheet using a Totals row . Display summarized or aggregate data When you use tables to record transactions or store regularly occurring numeric data, it is useful to be able to review that data in aggregate, such as sums or averages. In Access, you can add a Totals row to a datasheet. Total row is a row at the bottom of the datasheet that can display a running total or other aggregate value. Run the Product Subtotals query you created earlier, and leave the results open in Datasheet view. On the Home tab, click Totals . A new row appears at the bottom of the datasheet, with the word Total in the first column. Click the cell in the last row of the datasheet named Total . Click the arrow to view the available aggregate functions. Because the column contains text data, there are only two choices: None and Count . Select Count . The content of the cell changes from Total to a count of the column values.
📥 下载地址(文章中间)
装机神器,可以安装一切系统。
Click the adjoining cell (the second column). Note that an arrow appears in the cell. Click the arrow, and then click Sum . The field displays a sum of the column values. Leave the query open in Datasheet view. Create a crosstab query Now suppose that you want to review product subtotals, but you also want to aggregate by month, so that each row shows subtotals for a product, and each column shows product subtotals for a month. To show subtotals for a product and to show product subtotals for a month, use a crosstab query. You can modify the Product Subtotals query again so that the query returns rows of product subtotals and columns of monthly subtotals. On the Home tab, in the Views group, click View , and then click Design View . In the Query Setup group, click Add Tables . Double-click Orders , and then click Close . On the Query Design tab, in the Query Type group, click Crosstab . In the design grid, the Show row is hidden, and the Crosstab row is displayed. In the third column of the design grid, right-click the Field row, and then click Zoom on the shortcut menu. The Zoom box opens. In the Zoom box, type or paste the following: Month: "Month " & DatePart("m", [Order Date]) In the Crosstab row, select the following values from the drop-down list: Row Heading for the first column, Value for the second column, and Column Heading for the third column. On the Query Design tab, in the Results group, click Run . The query runs, and then displays product subtotals, aggregated by month. Press CTRL+S to save the query. For more information about crosstab queries, see Make summary data easier to read by using a crosstab query . Create a make table query You can use a make-table query to create a new table from data that is stored in other tables. For example, suppose that you want to send data for Chicago orders to a Chicago business partner who uses Access to prepare reports. Instead of sending all your order data, you want to restrict the data that you send to data specific to Chicago orders. You can build a select query that contains Chicago order data, and then use the select query to create the new table by using the following procedure: Open the example database from the previous example. To run a make-table query, you may need to enable the database content. Note If you see a message beneath the Ribbon about enabling the database, click **Enable content.**If your database is already in a trusted location, you will not see the Message Bar. Open the example database from the previous example. To run a make-table query, you may need to enable the database content. If you see a message beneath the Ribbon about enabling the database, click **Enable content.**If your database is already in a trusted location, you will not see the Message Bar. On the Create tab, in the Query group, click Query Design . On the Create tab, in the Query group, click Query Design . Double-click Order Details and Orders . Double-click Order Details and Orders . In the Orders table, double-click Customer ID and Ship City to add these fields to the design grid. In the Orders table, double-click Customer ID and Ship City to add these fields to the design grid. In the Order Details table, double-click Order ID , Product ID , Quantity , Unit Price , and Discount to add these fields to the design grid. In the Order Details table, double-click Order ID , Product ID , Quantity , Unit Price , and Discount to add these fields to the design grid. In the Ship City column of the design grid, clear the box in the Show row. In the Criteria row, type 'Chicago' (include the single quotation marks). Verify the query results before you use them to create the table. In the Ship City column of the design grid, clear the box in the Show row. In the Criteria row, type 'Chicago' (include the single quotation marks). Verify the query results before you use them to create the table. On the Query Design tab, in the Results group, click Run . On the Query Design tab, in the Results group, click Run . Press Ctrl + S to save the query. Press Ctrl + S to save the query. In the Query Name box, type Chicago Orders Query , and then click OK . In the Query Name box, type Chicago Orders Query , and then click OK . On the Home tab, in the Views group, click View , and then click Design View . On the Home tab, in the Views group, click View , and then click Design View . On the Query Design tab, in the Query Type group, click Make Table . On the Query Design tab, in the Query Type group, click Make Table . In the Make Table dialog box, in the Table Name box, type Chicago Orders , and then click OK . In the Make Table dialog box, in the Table Name box, type Chicago Orders , and then click OK . On the Query Design tab, in the Results group, click Run . On the Query Design tab, in the Results group, click Run . In the confirmation dialog box, click Yes , and see the new table displayed in the Navigation Pane. Note If there is already a table with the same name that you specified, Access deletes that table before running the query. In the confirmation dialog box, click Yes , and see the new table displayed in the Navigation Pane. If there is already a table with the same name that you specified, Access deletes that table before running the query. For more information about using make table queries, see Create a make table query . Create an append query You can use an append query to retrieve data from one or more tables and add that data to another table. For example, suppose that you created a table to share with a Chicago business associate, but you realize that the associate also works with clients in the Milwaukee area. You want to add rows that contain Milwaukee area data to the table before you share the table with your associate. You can add Milwaukee area data to the Chicago Orders table by using the following procedure: Open the query named "Chicago Orders Query" you created earlier in Design view. On the Query Design tab, in the Query Type group, click Append . The Append dialog box opens. In the Append dialog box, click the arrow in the Table Name box, select Chicago Orders from the drop-down list, and then click OK . In the design grid, in the Criteria row of the Ship City column, delete 'Chicago', and then type 'Milwaukee' . In the Append To row, select the appropriate field for each column. In this example, the Append To row values should match the Field row values, but that is not required for append queries to work. On the Query Design tab, in the Results group, click Run . While running a query that returns a large amount of data you might get an error message indicating that you will not be able to undo the query. Try increasing the limit on the memory segment to 3MB to allow the query to go through. For more information about append queries, see Add records to a table by using an append query . Create an update query You can use an update query to change the data in your tables, and you can use an update query to enter criteria to specify which rows should be updated. An update query provides you an opportunity to review the updated data before you perform the update. An action query cannot be undone. You should consider making a backup of any tables that you will update by using an update query. In the previous example, you appended rows to the Chicago Orders table. In the Chicago Orders table, the Product ID field shows the numeric Product ID. To make the data more useful in reports, you can replace the product IDs with product names, use the following procedure: Open the Chicago Orders table in Design view. Open the Chicago Orders table in Design view. In the Product ID row, change the Data Type from Number to Text . In the Product ID row, change the Data Type from Number to Text . Save and close the Chicago Orders table. Save and close the Chicago Orders table. On the Create tab, in the Query group, click Query Design . On the Create tab, in the Query group, click Query Design . Double-click Chicago Orders and Products . Double-click Chicago Orders and Products . On the Query Design tab, in the Query Type group, click Update . On the Query Design tab, in the Query Type group, click Update . In the design grid, the Sort and Show rows disappear, and the Update To row appears. In the design grid, the Sort and Show rows disappear, and the Update To row appears. In the Chicago Orders table, double-click Product ID to add this field to the design grid. In the Chicago Orders table, double-click Product ID to add this field to the design grid. In the design grid, in the Update To row of the Product ID column, type or paste the following: [Products].[Product Name] Tip You can use an update query to delete field values by using an empty string ( "" ) or NULL in the Update To row. In the design grid, in the Update To row of the Product ID column, type or paste the following: [Products].[Product Name] You can use an update query to delete field values by using an empty string ( "" ) or NULL in the Update To row. In the Criteria row, type or paste the following: [Product ID] Like ([Products].[ID]) In the Criteria row, type or paste the following: [Product ID] Like ([Products].[ID]) You can review which values will be changed by an update query by viewing the query in Datasheet view. You can review which values will be changed by an update query by viewing the query in Datasheet view. On the Design tab, click View > Datasheet View . The query returns a list of Product IDs that will be updated. On the Design tab, click View > Datasheet View . The query returns a list of Product IDs that will be updated. On the Query Design tab, click Run . When you open the Chicago Orders table, you will see that the numeric values in the Product ID field have been replaced by the product names from the Products table. On the Query Design tab, click Run . When you open the Chicago Orders table, you will see that the numeric values in the Product ID field have been replaced by the product names from the Products table. For more information about update queries, see Create and run an update query . Create a delete query You can use a delete query to delete data from your tables, and you can use a delete query to enter criteria to specify which rows should be deleted. A delete query provides you an opportunity to review the rows that will be deleted before you perform the deletion. For example, say that while you were preparing to send the Chicago Orders table from the previous example, to your Chicago business associate, you notice that some of the rows contain a number of empty fields. You decided to remove these rows before you send the table. You could just open the table and delete the rows manually, but if you have many rows to delete and you have clear criteria for which rows should be deleted, you might find it helpful to use a delete query. You can use a query to delete rows in the Chicago Orders table that do not have a value for Order ID by using the following procedure: On the Create tab, click Query Design . Double-click Chicago Orders . On the Query Design tab, in the Query Type group, click Delete . In the design grid, the Sort and Show rows disappear, and the Delete row appears. In the Chicago Orders table, double-click Order ID to add it to the grid. In the design grid, in the Criteria row of the Order ID column, type Is Null . On the Query Design tab, in the Results group, click Run . For more information about delete queries, see Create and run a delete query . Thank you for your feedback!
📥 下载地址(文章结尾)
装机神器,可以安装一切系统。