I have a stored procedure that uses the INSERT command to add a row to a table in SQL Server 7. Most of the time it adds the new row to the bottom of the table, but sometimes it doesn't. Does anybody know why?
CREATE PROCEDURE spTest
@Item varchar(15),
@Descrip varchar(30),
@Market varchar(20)
AS
INSERT tblTest (ItemNo,Description,MktNo)
VALUES (@Item,@Descrip,@Market)
CREATE PROCEDURE spTest
@Item varchar(15),
@Descrip varchar(30),
@Market varchar(20)
AS
INSERT tblTest (ItemNo,Description,MktNo)
VALUES (@Item,@Descrip,@Market)