📄 upproductgetlist_benchmark.sql
字号:
/******************************************************************************
** File: upProductGetList_Benchmark.sql
** Name: upProductGetList Stored Procedure
** Desc: Gets the list of products via the selected category.
** This was modified to return the TOP 50 results for
** the benchmarking.
**
** Date: 11/6/2001
**
*******************************************************************************/
ALTER PROCEDURE upProductGetList
(
@cat_id char(10)
)
AS
SELECT TOP 50 productid, name
FROM Product
WHERE category = @cat_id
ORDER BY name
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -