Viewing 3 posts - 1 through 3 (of 3 total)
"Sybase SQL Server" was the name of Sybase Corporation's relational...
September 11, 2004 at 12:10 pm
If you execute sql you can do whatever combinations you need:
CREATE PROCEDUREsproc_getAllForumThreads
@SortBynvarchar(255),
@OrderTypebit
AS
DECLARE @Order varchar(4), @sql varchar(1000)
IF @OrderType = 0
BEGIN
SET @Order = 'ASC'
END
ELSE
BEGIN
SET @Order = 'DESC'
END
SET @sql = 'SELECT Name,...
November 18, 2003 at 2:53 am
MS Press had books series called "Readiness Review" I pass 70-210 and 70-215 in one day and 80% of questions was absolutely indentical to "Readiness Review" books I have. And...
July 3, 2003 at 12:39 am
Viewing 3 posts - 1 through 3 (of 3 total)