0
我有一個數據庫表,看起來像這樣在IE地址是一個免費的文本字段中的地址(我沒有設計它):搜索使用免費的文本字段
5 records from the Address Table:
1 The street
2 Pine Street,Lincoln,Lincolnshire
77 Drove Way,Grantham
Drove Way Lincoln
Some house on Ambleside
我有了一個應用程序地址字段是自由文本(我沒有設計它)。我希望用戶開始在地址欄中輸入地址,然後出現Possibles列表(希望只有一個)。我想到了幾種方法來解決這個問題:
1) Use a LIKE statement e.g. select * FROM dbaddress where address like '%1 The Street%'. This seems like a bad idea.
2) Free text search. I have not used this before.
對我的要求,這是「更好的選擇」。有其他方法嗎?