Board index » delphi » Update SQL with a stored Procedure
Deane Hafling
![]() Delphi Developer |
Mon, 05 Nov 2001 03:00:00 GMT
Update SQL with a stored Procedure
I have a stored procedure that collects data from 2 different tables, how
can I write a Insert sql statement to allow only one of the tables to be insertable. The one table is just a lookup table. Here is what I currently have : I have two tables, Compant and CAffl. Company has two fields, Comp_Num and Comp_Name I have a stored Procedure that links the table in the following manner CREATE PROCEDURE sp_CompAffl @Company_ID Float AS How do I insert a record for this stored procedure? I only want to insert a |