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 / 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 |
Can you call a constructor within a constructor?
does core java and j2se both are same?
How to run a JAR file through command prompt?
Can we define private and protected modifiers for the members in interfaces?
Write a program to find the greatest of three numbers in java?
Write the algorithm to check the number non-leaf nodes in a tree.
Can an object subclass another object?
What is java jit compilers?
What is the difference between jfc & wfc?
What is complexity and its types?
What is a singleton class in Java? And How to implement a singleton class?
What is a linkedhashmap java?