zoukankan      html  css  js  c++  java
  • 用SQL语句创建和删除Access数据库中的表;添加列和删除列

    用SQL语句创建和删除Access数据库中的表;添加列和删除列
    SQL语句,具体使用方法请看帮助   
        
       Create    Table    tab1    (fld1    integer)   
       Drop    Table    tab1   
        
       Alter    Table    tab1    Add    COLUMN    col1    integer   
       Alter    Table    tab1    Drop    COLUMN    col1

    2
    建立数据表   
       create    table    数据表名称(字段名称1    数据类型1(数据长度),字段名称2    数据类型2(数据长度),...)   
        
       删除数据表   
       drop    table    数据表名称   
        
       编辑数据表   
       添加字段   
       alter    table    数据表名称    add    字段名称    数据类型(数据长度)   
        
       删除字段   
       alter    table      数据表名称    drop    字段名称   
        
       字段更名   
       没有直接的更名语句,但可以用先删再除添加的方法实现   
       


    3
    建立数据表   
       create    table    数据表名称(字段名称1    数据类型1(数据长度),字段名称2    数据类型2(数据长度),...)   
        
       删除数据表   
       drop    table    数据表名称   
        
       编辑数据表   
       添加字段   
       alter    table    数据表名称    add    字段名称    数据类型(数据长度)   
        
       删除字段   
       alter    table      数据表名称    drop    字段名称
     ALTER TABLE Table1 ADD COLUMN NewCol TEXT(10) DEFAULT 'abc

  • 相关阅读:
    (离线算法 LCA) hdu 2874
    (树形DP) hdu 4118
    (树的重心) poj 1655
    (线性基) bzoj 2115
    (线性基) bzoj 2460
    (边双联通+树直径) hdu 4612
    (拓扑图+DP) poj 3249
    (求割点和除去割点后的联通块数目) poj 1523
    (边双联通) poj 3352
    (DP求最长路) hdu 4607
  • 原文地址:https://www.cnblogs.com/sw520/p/8793538.html
Copyright © 2011-2022 走看看