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 |
What is the primitive type byte?
What is the purpose of sizeof operator?
What are 4 pillers of object orinted programming?
What is multiple inheritance? Is it supported by java?
What is the difference between the prefix and postfix forms of the ++ operator?
What is immutable data?
What is the purpose of a statement block?
How do you sort objects in java?
How do we access static members in java?
Is vector synchronized in java?
Name some OOPS Concepts in Java?
Is a boolean 1 bit?