In a company, you need to add a new record for a recently hired employee into the employee database. Which command should you use to accomplish this task?
To add a new record to a relational database, the INSERT command is used in SQL (Structured Query Language). This command allows you to insert new data into a table. The SELECT command is used to retrieve data, not to insert it. The CREATE command is used mainly to create new database objects like tables, not specific records. The UPDATE command is used to modify existing data within the database.
Learn More
AI Generated Content may display inaccurate information, always double-check anything important.
What is SQL and why is it important?
What is the difference between the INSERT and UPDATE commands?