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
  • 相关阅读:
    squid代理
    日志、远程日志、日志轮询、DHCP
    环境变量、进程
    rpm、yum
    filesystem安装后产生所有目录
    vRO 添加已有磁盘到VM
    python笔记-8(线程,进程,协程,io多路复用)
    python笔记-7(面向对象、类、面向对象进阶、异常处理、断言、反射、网络(套接字)编程、)
    python3 封装
    python3 继承
  • 原文地址:https://www.cnblogs.com/IS2120/p/6746015.html
Copyright © 2011-2022 走看看