Database/MS-SQL | Posted by 아키텍처 2012. 4. 24. 17:51

Select top 10 단축키 만들기 (sp_sys_table_top_10)

 
 

MS-SQL 도구 -> 옵션 -> 키보드 에 저장프로시저 등록하면 된다.

ㅎㅎㅎㅎ

 

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

 


ALTER  Proc [dbo].[sp_sys_table_top_10]

 @TableName  nVarChar(256)

as

 if @TableName is Null
  return

 exec ('Select top 10 * From ' + @TableName + ' Order by 1 Desc')

Posted by 김준홍 (http://www.Juuun.com)