Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to generate a string formatted like: 99-88-77 where the three 2digit numbers are randomly generated.

My TSQL that works:

declare @result nvarchar(50)
    DECLARE @counter smallint, @ci smallint, @cu smallint, @dc smallint

      SET @ci=RAND()*100
      SET @cu=RAND()*100
      SET @dc=RAND()*100

      --SET @counter = @counter + 1

   set @result = CAST(@ci AS varchar(2)) +'-'+CAST(@cu AS varchar(2))+'-'+CAST(@dc AS varchar(2))
   print @result

Produces (this time): 16-37-30

I need to get this string for every record inserted into a table.

Now I would like to wrap this into a function, but apparently I can't use RAND() in a UDF.

How can I wrap this to call when using an insert statement?

share|improve this question

1 Answer

up vote 4 down vote accepted

You can do this as a two-step process.

First, create a view to generate your random number:

CREATE VIEW vRandNumber
AS
SELECT RAND() as RandNumber

Second, create your UDF to pull from the view:

CREATE FUNCTION dbo.udfTest
(
)
RETURNS nvarchar(50)
AS
BEGIN

    DECLARE @result  nvarchar(50)
    DECLARE @counter smallint, @ci smallint, @cu smallint, @dc smallint

    SET @ci=(SELECT RandNumber FROM vRandNumber)*100
    SET @cu=(SELECT RandNumber FROM vRandNumber)*100
    SET @dc=(SELECT RandNumber FROM vRandNumber)*100

    set @result = CAST(@ci AS varchar(2)) +'-'+CAST(@cu AS varchar(2))+'-'+CAST(@dc AS varchar(2))

RETURN @result
END

This will return your value that you just requested. Then when you want your value your just use and you will get your random answer:

SELECT dbo.udfTest()

OR

INSERT INTO yourTable 
(
    randNumber
)
SELECT dbo.udfTest()

I just tested this in sql server 2005 and it worked.

share|improve this answer
+1 nice way around the rand() issue – wickedone Apr 11 '12 at 22:31
Perfect! Thanks! – kaplooeymom Apr 11 '12 at 22:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.