CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #1
    Join Date
    Jul 2012
    Posts
    6

    Error when using WHILE Function in selecting on sQL server script

    hi guys i have this code,,

    Code:
    declare @n int
    set @n = 1
    SELECT     TOP 100 PERCENT ID, purchase_id, supp_add_mat_id, mat_code, asset_no, qty, require_by, require_date, require_desc, status, pr_detail_asset, 
                          scheduled, 
    		while @n <= 31
    		begin 
    	                CASE WHEN datepart(day, require_date) = @n THEN qty ELSE '0' END AS @n
    		set @n = @n+1
    		end 
    FROM         dbo.t_pr_details
    but the code is error coz i use the While function when selecting a data,,
    plz help..
    Last edited by ryanframes; July 23rd, 2012 at 12:57 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured