SQL語句大全

2022-03-05 13:22:55 字數 2010 閱讀 1187

建表:

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為關聯的所有記錄.

缺點-外部資料庫不能帶密碼.   

在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=pass(word);]

其中的driver=driver可以在登錄檔中的

hkey_local_machinesoftwareodbcodbcinst.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不認,所以為了遷移方便和相容,

建議用單引號作為字串分隔符.

《SQL語句大全》

語 句 功 能 資料操作 select 從資料庫表中檢索資料行和列 insert 向資料庫表新增新資料行 delete 從資料庫表中刪除資料行 update 更新資料庫表中的資料 資料定義 create table 建立乙個資料庫表 drop table 從資料庫中刪除表 alter table 修...

習SQL語句之SQL語句大全

語 句 功 能 資料操作 select 從資料庫表中檢索資料行和列 insert 向資料庫表新增新資料行 delete 從資料庫表中刪除資料行 update 更新資料庫表中的資料 資料定義 create table 建立乙個資料庫表 drop table 從資料庫中刪除表 alter table 修...

SQL語句大全 技巧

三 技巧 1 1 1,1 2的使用,在sql語句組合時用的較多 where 1 1 是表示選擇全部 where 1 2 全部不選,如 if strwhere begin set strsql select count as total from tblname where strwhere ende...