开发者

how to receive fast result from access query?

开发者 https://www.devze.com 2023-01-07 01:31 出处:网络
i have table (MyTbl) that has 3 field\'s A,B,C this table contain 800000 records. what is the best way to receive fast result ?

i have table (MyTbl) that has 3 field's A,B,C

this table contain 800000 records.

what is the best way to receive fast result ?

开发者_JAVA百科

i try this:

select top 1 A from MyTbl where A='123'

but it isn't fast

i work with Access 2007 - and C# program


Create an index on the column A in MyTbl.


Create an index on table MyTbl, field A.

0

精彩评论

暂无评论...
验证码 换一张
取 消