Advertisements
Advertisements
Question
Write an SQL Query to insert the following data into the EMPLOYEES table: 101, Ravi Kumar, 2015-06-01, 1.70.
Code Writing
Advertisements
Solution
INSERT INTO EMPLOYEES (EmployeeID, EmpName, HireDate, Salary_in_Lacs)
VALUES (101, 'Ravi Kumar', '2015-06-01', 1.70);shaalaa.com
Is there an error in this question or solution?
