write SQL command for table employee where print first name or last name start like "A" and who is working in domain(angular js,java,dotnet)
Answer Posted / deepanshu
select first name like "A%" ,last name like "A%" from employee where domain IN (angular,js,java,dotnet);
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Difference between operator overloading and function overloading
Which access specifier can be used with class ?
What is method in research paper?
What is communist flag?
What is fundamental datatype?
How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?
Can we declare array without size in java?
What is data type in java?
What is passing value java?
Why java strings are immutable in nature?
Explain different states of a thread in java?
What is udp in java?
What is the main use of generics in java?
What is private static class in java?
Will the compiler creates a default constructor if I have a parameterized constructor in the class?