IT Questions and Answers :)

Friday, December 14, 2018

What command would you use to create a row in SQL?

What command would you use to create a row in SQL?

  • INSERT
  • MAKE
  • ADD
  • CREATE 

 
What command would you use to create a row in SQL?

EXPLANATION

To create a row in a SQL database, you use the command INSERT.

If we want to insert a single row in a table emp.

Query:
insert into emp values(101,’hari’);

It will add a new row has employee id 101 and employee name ‘hari’ into th emp table.

Share:

0 comments:

Post a Comment

Popular Posts