Question:
Like operator in MS-Access query?
?
2013-02-04 01:24:44 UTC
How use 'Like' operator in MS-Access?
Four answers:
?
2013-02-04 01:36:07 UTC
for MS Access only

select * from mytable where name like '%name%';
?
2016-11-16 10:52:56 UTC
Ms Access Like Operator
inzano
2016-12-11 17:55:43 UTC
once you're starting to be no effects there are a number of conceivable issues: once you're linking better than one table your hyperlinks could be incorrect. that is annoying to diagnose this situation without seeing the question. If all of the fields are interior a similar table then the question ought to appear as if this. city--> no standards servive a million --> standards a million provider 2 --> standards 2 do no longer use "provider a million and repair 2" with the aid of fact the standards in a field that basically is composed of value for provider a million or 2. Use the amenities as separate standards interior the perfect columns. examine the spelling of the standards. that is not case sensistive. additionally examine the table to ensure the flag or enter for provider a million fits the form you're typing interior the standards. in case you have an added area or character the question would be returned sparkling.
nazim
2013-02-04 01:40:12 UTC
In the following query, the LIKE operator is used to find out the record of employee from Emp Table whose name is started with David





SELECT Emp.Name FROM Emp

WHERE (Emp.Name) Not Like 'David*' ;



You can use the LIKE operator by the following way.



Like '*David*' would return all values that contain David

Like '*David' would return all values that end with David


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...