Skip to main content

Which of the following query finds employees with an experience more than 5?



Select * From DataFlair where experience>5;

 Select * From DataFlair;

 Select * From DataFlair where experience>=5;

 Select * From DataFlair where experience<=5;

Comments