Hi,
SELECT *
FROM veriler
WHERE (name LIKE '%in%')
This line doesn't work in Ms Access, IN either. No error is given is well. But It works in SQL server. How can i do in Access?
Thanks
Hi,
SELECT *
FROM veriler
WHERE (name LIKE '%in%')
This line doesn't work in Ms Access, IN either. No error is given is well. But It works in SQL server. How can i do in Access?
Thanks
answer is
WHERE name LIKE ('*' & in & '*')
The Asterisk * is the wild card for the LIKE operator in Access.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.