• 在access 2007 中进行sql query


    1. 发现了两个小工具(都是通过odbc来访问)
    1.1 winsql (其中lite是免费版,需要上网站上申请注册号)
    1.2 query tool


    2. Creating a SQL Query in Access 2007

    by rhyttinen on September 17, 2008

    SQL (Structured Query Language) is a powerful database language used in queries. Each query that you create has an underlying SQL statement, which you can view or edit by clicking theViewbutton arrow on the Home Ribbon and then click SQL view. If you know SQL, you can create Select Queries as well as Action Queries by typing in the SQL statement in the SQL window.

    An example of a simple select SQL statement would be: SELECT * FROM tblCustomers. This statement would return all records from tblCustomers. If you want to delete all records from tblCustomers from the state of Michigan, the equivalent SQL statement statement would read: DELETE * FROM tblStudents WHERE State = “MI”.

    To Create a SQL Query

    1. Click theCreate tabon the Ribbon.

    2. Click theQuery Designbutton on the Other group.

    3. In theShow Table dialog box, click theClose button.

    4. Click thearrowon the View button and then clickSQL View.

    5. Type your SQL commands to create the query.

    6. Click theRun button on the Ribbon to execute the query.

    3. 64位mdb访问,ACCESS

    Provider=Microsoft.Jet.OLEDB.4.0
    Provider=Microsoft.ACE.OLEDB.12.0
  • 相关阅读:
    bootstrap表头固定
    JS:二维数组排序和获取子级元素
    JavaScript 变量声明提升
    一道经典面试题-----setTimeout(function(){},0)
    排序
    基础知识:Promise(整理)
    几个兼容相关的重要函数
    JSON
    关于由ajax返回的数据在for循环中只能取到最后一个数的问题
    如果要遍历除了for循环,你还知道什么?——JavaScript的各种遍历方式
  • 原文地址:https://www.cnblogs.com/IS2120/p/6746015.html
Copyright © 2020-2023  润新知