zoukankan      html  css  js  c++  java
  • 在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
  • 相关阅读:
    常用数据库种类 以及优缺点
    数据库
    Python中os与sys两模块的区别
    python操作数据库
    python——解释型语言
    面向对象的三大特性
    Android Fastboot 与 Recovery 和刷机 千山万水迷了鹿
    selenium与appium怎样联系
    Pycharm快捷键
    uiautomator python版本
  • 原文地址:https://www.cnblogs.com/IS2120/p/6746015.html
Copyright © 2011-2022 走看看