Question: create a stored procedure using Sybase or Microsoft that will delete an employee from a sample emp table. This table probably exists in your database
create a stored procedure using Sybase or Microsoft that will delete an employee from a sample "emp" table. This table probably exists in your database already but if it does not, there is code to create it in the HW directory. Make sure you use proper transaction control and error checking as described in class.
1. Log into your Sybase or Microsoft server and verify you have an "emp" table. If not, create one from the available script.
.
.
End2> 12 use db25 go 1 select * from emp 2> go emp_id emp_name Jones Smith 3 Potter 4 Clinton (4 rows affected) 1> salary dept_code 00 SALE .00 SALE 00 TECH .00 MNGT
Step by Step Solution
There are 3 Steps involved in it
CREATE PROCEDURE uspdeleteyourName empid INT AS BEGIN DECLARE empnam... View full answer
Get step-by-step solutions from verified subject matter experts
