What is the wildcard character in SQL? Let?s say you want to
query database with LIKE for all employees whose name starts
with La.



What is the wildcard character in SQL? Let?s say you want to query database with LIKE for all emplo..

Answer / madduri

The wildcard character is %, the proper query with LIKE
would involve ?La%?.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What is global asax in c#?

0 Answers  


How you will handle session when deploying application in more than a server? Describe session handling in a webform, how does it work and what are the limits?

3 Answers   Microsoft,


How do I create a multilanguage, single-file assembly?

0 Answers  


What are the 3 logical operators?

0 Answers  


code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.

0 Answers  






What is the wildcard character in SQL? Let?s say you want to query database with LIKE for all employees whose name starts with La.

1 Answers  


What is difference between for and foreach in c#?

0 Answers  


hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }

2 Answers  


How do I enforce const correctness in c#?

0 Answers  


Why we use get set in c#?

0 Answers  


Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?

0 Answers  


in object oriented programming, how would you describe encapsulation?

0 Answers   Siebel Systems,


Categories