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)



write SQL command for table employee where print first name or last name start like "A" an..

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

Post New Answer

More Core Java Interview Questions

why would you use a synchronized block vs. Synchronized method? : Java thread

0 Answers  


What is difference between static variable and global variable?

0 Answers  


What are the override methods in Object class?

2 Answers   Tech Mahindra, Wipro,


Explain the features of interfaces in java?

0 Answers  


Does every java program need a main?

0 Answers  






What is the difference between an argument and a parameter?

0 Answers  


Can you access non static variable in static context?

0 Answers  


Write an algorithm program in java for the following question.. 1) S is a set of integers.X is an integer obtained by sum of two digits in S. Write logic for whether or not the X is from the S. The time of algorithm should not exceed o(n logn).

0 Answers  


Write a regular expression to validate a password. A password must start with an alphabet and followed by alphanumeric characters; its length must be in between 8 to 20.

0 Answers  


Why there is no call by reference in java?

0 Answers  


Will set allow duplicates in java?

0 Answers  


What is bubble sort in java?

0 Answers  


Categories