Get premium membership and access questions with answers, video lessons as well as revision papers.

Write MySQL code to insert at least one record into employees table table with the following fields:empNo, empName, empBasicSalary, empHouseAllowance, empPhoneNo

      

Write MySQL code to insert at least one record into employees table table with the following fields: empNo, empName, empBasicSalary, empHouseAllowance, empPhoneNo

  

Answers


Benjamin
INSERT INTO
Employees(empNo,empName,empBasicSalary,empHouseAllowance,empPhoneNumber)
VALUES(1,’Benjamin’,30000,5000,0799999999)

Future Great Thinker answered the question on August 7, 2020 at 08:45


Next: Write MySQL code to create a table with the following field name: empNo, empName, empBasicSalary, empHouseAllowance, empPhoneNo
Previous: Describe four quality control procedures that are applicable to an audit engagement

View More Computer Science Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions