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.
0 comments:
Post a Comment