- 1、本文档共28页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CH8使用选取查询增加威力
使用選取查詢增加威力 - Select Query 查 詢 (Query) 查詢(Query): 提供從一個以上的資料表查看特定資料的物件 使用查詢來檢視、變更、和分析資料 查看之資料可為 直接來自同一資料表/查詢的欄位資料 經由關聯,來自不同資料表/查詢的欄位資料 由多個欄位資料之計算/會整 查詢所得之資料類似一資料表,然並不存於資料庫中 → “記錄集” (Recordset) 查 詢 分 類 選取查詢(Select Query) 從各個資料表/查詢選取相關資訊 SQL: SELECT … FROM … [WHERE …] 動作查詢(Action Query) 新增、更新、刪除資料 SQL: INSERT UPDATE DELETE SELECT … INTO ... Query - Access 操作 查詢 Tab 新增 設計檢視 欄位清單 設計格線 從單一資料表選取資料 選取資料表 →新增物件按鈕 →查詢 欄位/資料表 or */資料表 需要之欄位、排序之欄位、準則之欄位 排序 顯示 設定欄位屬性 輸 入 選 取 準 則 準則: 或: AND OR 輸 入 選 取 準 則 (續) BETWEEN AND BETWEEN 10 AND 100 BETWEEN #10/1/1997# AND #10/31/1997# IN IN (“春”, “夏”, “秋”, “冬”) LIKE LIKE “[!0-9]*” LIKE “[A-Z] [A-Z] [A-Z] - # # #” 日期、時間 Day(date) -- Returns a value from 1 through 31 for the day of the month. Month(date) -- Returns a value from 1 through 12 for the month of the year. Year(date) -- Returns a value from 100 through 9999 for the year. Weekday(date) -- Returns a value from 1 (Sunday) through 7 (Saturday) for the day of the week. Hour(date) -- Returns the hour (0 through 23). Date( ) -- Returns the current system date. Datepart(Interval, date) interval 引數的設定值如下: “yyyy” 年 “q” 季 “m” 月 “y” 一年的日數 “d” 日 “w” 一週的日數 “ww” 週 “h” 時 “n” 分 “s” 秒 計算數值 (Calculating Values) Examples: [StreetAddress] , [City] , [State] [Zip] [ContractPrice] * [NumberOfWeeks] * [Commission1%] 0.5 * [Length]*[Width] Datepart(“y”, [DateInfo]) CCur(CLng([Price]*[Amount]*100)/100) 欄位之引用 [欄名] [資料表名] ! [欄名] [Table1]![Field3] + 0.5 * [Table2]![Field3] Operators + - * / \ Rounds both numeric expressions to integers and divides the first integer by the second integer. The result is rounded to an integer. ^ Raises the first numeric expression to the power indicated by the second numeric expression. MOD Rounds both numeric expressions to integers, divides the first integer by the second integer, and returns the remainder. Creates an extended text string by concatenating the first text string to the second text string. 運算式
文档评论(0)