ms access - Search for text with specific length and no spaces -


i learning access (2010) , trying set criteria query brings names length 10 letters , there no spaces.

i tried len([name])="10" , returns names length of 10, includes names space in it.

the hint given was:

use wildcards * , ?, , phrases , not like"

however not enough me sort out.

what criteria solve this?

for else looking solve sort of issue, try this:

select communication.communicationcode, communication.communicationname communication len([communicationcode])=10 , communicationname not "* *" 

you need remove quotes 10.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -