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
  • 相关阅读:
    用Android Studio 开发Android应用
    以前写的一个下载小说的工具
    折半算法的C#实现方式-递归和非递归
    128. 最长连续序列
    一语点醒技术人:你不是 Google(转载)
    计算机专业导论与思维系统--哈工大
    安卓笔记 09_28
    安卓学习笔记
    安卓数据库08_29
    08_28学习笔记Kotlin
  • 原文地址:https://www.cnblogs.com/IS2120/p/6746015.html
Copyright © 2011-2022 走看看