access中使用sql语句应注意的地方及几点技巧
引用:fred
以下sql语句在access xp的查询中测试通过
建表:
create table tab1 (
id counter,
name string,
age integer,
[date] datetime);
技巧:
自增字段用 counter 声明.
字段名为关键字的字段用方括号[]括起来,数字作为字段名也可行.
建立索引:
下面的语句在tab1的date列上建立可重复索引
create index idate on tab1 ([date]);
完成后access中字段date索引属性显示为 – 有(有重复).
下面的语句在tab1的name列上建立不可重复索引
create unique index iname on tab1 (name);
完成后access中字段name索引属性显示为 – 有(无重复).
下面的语句删除刚才建立的两个索引
drop index idate on tab1;
drop index iname on tab1;
access与sqlserver中的update语句对比:
sqlserver中更新多表的update语句:
update tab1
set a.name = b.name
from tab1 a,tab2 b
where a.id = b.id;
同样功能的sql语句在access中应该是
update tab1 a,tab2 b
set a.name = b.name
where a.id = b.id;
即:access中的update语句没有from子句,所有引用的表都列在update关键字后.
上例中如果tab2可以不是一个表,而是一个查询,例:
update tab1 a,(select id,name from tab2) b
set a.name = b.name
where a.id = b.id;
访问多个不同的access数据库-在sql中使用in子句:
select a.*,b.* from tab1 a,tab2 b in db2.mdb where a.id=b.id;
上面的sql语句查询出当前数据库中tab1和db2.mdb(当前文件夹中)中tab2以id为关联的所有记录.
缺点-外部数据库不能带密码.
补充:看到ugvanxk在一贴中的答复,可以用
select * from [c:\aa\a.mdb;pwd=1111].table1;
access xp测试通过
在access中访问其它odbc数据源
下例在access中查询sqlserver中的数据
select * from tab1 in [odbc]
[odbc;driver=sql server;uid=sa;pwd=;server=127.0.0.1;database=demo;]
外部数据源连接属性的完整参数是:
[odbc;driver=driver;server=server;database=database;uid=user;pwd=password;]
其中的driver=driver可以在注册表中的
hkey_local_machine oftware\odbc\odbcinst.ini\
中找到
access支持子查询
access支持外连接,但不包括完整外部联接,如支持
left join 或 right join
但不支持
full outer join 或 full join
access中的日期查询
注意:access中的日期时间分隔符是#而不是引号
select * from tab1 where [date]>#2002-1-1#;
在delphi中我这样用
sql.add(format(
select * from tab1 where [date]>#%s#;,
[datetostr(date)]));
access中的字符串可以用双引号分隔,但sqlserver不认,所以为了迁移方便和兼容,
建议用单引号作为字符串分隔符.
access的约束
在jet sql参考中关于约束的内容不够详细,可以参考sql server的联机丛书
下面的sql为a表的name字段增加非空约束
alter table a add constraint a_checkname check (not [name] is null)
注意:每一个约束都是一个对象,都有一个名字
下面的语句把id列设置为主键
alter table [表] add primary key (id)
下面的语句把id列改为自动编号类型,并且设置为主键
alter table [表] alter [id] counter constraint [表_p] primary key
添加复合主键
下面的sql为tb_demo表添加复合主键(id,id2).
alter table tb_demo
add constraint tb_demo_pk
primary key (id,id2)