Field lenght

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello all
I want to select those records that have a length of less than 2 in FiledA.
Anyone can help me?
 
Raul said:
Hello all
I want to select those records that have a length of less than 2 in
FiledA. Anyone can help me?

SELECT *
FROM TableName
WHERE Len([FieldA]) < 2
 
Back
Top