Microsoft
Software
Hardware
Network
Question : What is the matter with this stored procedure
I have this stored procedure and it is giving me a error :
Incorrect syntax near the keyword 'TABLE'.
This is the code.
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[spInsertQuestion]
@CategoryName varchar(50),
@Question varchar(350),
@Answer varchar(500)
AS
DECLARE #TempCatId TABLE
(
tCatID int
)
INSERT INTO #TempCatID(tCatId)
SELECT CatID
FROM Category
WHERE CategoryName = @CategoryName
Answer : What is the matter with this stored procedure
CREATE PROCEDURE [dbo].[spInsertQuestion]
@CategoryName varchar(50),
@Question varchar(350),
@Answer varchar(500)
AS
DECLARE @TempCatId TABLE
(
tCatID int
)
INSERT INTO @TempCatID(tCatId)
SELECT CatID
FROM Category
WHERE CategoryName = @CategoryName
Random Solutions
odbc problem (sqlexec, sqlconnect)
Options with Importing Pictures and Videos not functioning
PowerPoint Issue
I need to change all the 'null's in a query to a blank (empty string) with sql server
What is the easiest way to get bullets & other symbols to align in Microsoft Word? I copy and paste items into Word documents that contain bullets, and this causes the bullets to lose their alignment
ahtcommonfileopensave access 2003 to my compu
Where or between on row_number
How do I store the result of a select query into a variable
VBA Code for Charts/Graphs
Access VBA Expert needed - bookmarks amongst 2 recordsets, etc