迴圈(T-SQL)

以下紀錄T-SQL迴圈寫法

declare @_count int ,@_i int
set @_i = 0
set @_count = 10   -- 要產生幾筆資料
while (@_i<@_count)
begin
//要迴圈的語法
//加1
set @_i=@_i+1
end

留言

這個網誌中的熱門文章

Python-相關係數矩陣實作(python-correlation matrix )

ASP.NET-後端將值傳給javascript

ASP.NET-FileUpload上傳後自動觸發button click(FileUpload upload auto trigger button click)