[DB] Access問題

2008-07-04 6:52 pm
DB中,有行column入面既資料係用英文字母開頭,
例如: 'a12345','b12345'
e家想set條件,只係拎a字頭既資料,應該點set條sql?

幫幫手填下[...]
select xxx from xxx [...]

回答 (2)

2008-07-04 7:05 pm
✔ 最佳答案
幫幫手填下[...]
select xxx from xxx [...]

select fieldA as fa from TableA as ta where fa LIKE
'a%';

LIKE 可以搵到個field ge pattern
LIKE 'a%' 即係搵到a 字開頭ge 所有pattern
同樣...可以LIKE '%a' or '%a%'..
前者會找到所有a 字結尾的字串...如1234a, 123a, 2a, a etc
後者則搵到所以字串中包括a 字的...如1234a, 123a, 123ab, a1234, a, etc..
仲可以 LIKE 'a_';
即係a 字開頭後EXACTLY 一個字的字串先會搵到...如a1,a2, etc... a12 就唔包括了,,
2008-07-04 7:08 pm
select xxx from xxx where (((databasename.fieldname) Like "a*"));


收錄日期: 2021-04-29 21:41:35
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20080704000051KK00556

檢視 Wayback Machine 備份