used: to insert the records to a data base table from work area/ internal table. inserting first record to DB table. data wa_employee type employee. wa_employee = value #( EMPNO = '1' EMPNAME 'SATHISH ...
A database consists of one or more tables. A table is identified by its name. A table is made up of columns and rows. Columns contain the column name and data type. Rows contain the records or data ...
this will return: "(1 row(s) affected)" But now I need to know, what data was actually inserted? SQL Server has answered this question in 2005 with the OUTPUT statement: This will return a dataset ...