+ 1
How do I select a names with four characters from a table using Wildcards.
4 Answers
0
safik
0
select names from xyz
where names = "____";
//just use 4 underscores and try
0
Unfortunately four underscores couldn't work. Thanks though.
0
Yes it worked. Where lastname Like '____'. Thank you.