martedì 3 maggio 2011

MSAccess test/check vowels for last letter of a field.

Here is the example :


SELECT ClientiFunzioniCustom.[Funzione] FROM FunzioniCustom where
MID(TRIM(FunzioniCustom.[Funzione]),LEN(TRIM(FunzioniCustom.[Funzione])),LEN(TRIM(FunzioniCustom.[Funzione]))+1) Not  in('A','E','I','O','U');

MSAccess SQL Capitalize

To capialize a string of a field you should use API STRCONV
like following example :
SELECT DISTINCT(STRCONV(FunzioniCustom.[Funzione],3)) FROM FunzioniCustom;