2020년 6월 4일 목요일

DB - MSSQL - SP Help



sp_help
sp_columns
sp_who
sp_lock
sp_helptext
sp_helpindex
sp_spaceused
set statistics io on
select top 10 * from


MSSQL - Cursor vs Temp Table

#테이블 변수사용의 예 use pubs go declare @tmptable table (     nid int identity(1,1) not null,     title varchar (80) not null ) -- 테이블 변수 선언 inse...