Sqlserver
 sql >> डेटाबेस >  >> RDS >> Sqlserver

एसक्यूएल प्राइम नंबर फ़ंक्शन

जैसा कि आपने कहा, आपके पास एक तालिका हो सकती है जो 10 मिलियन तक के सभी प्राइम्स को संग्रहीत करती है . तब यह देखना तुच्छ होगा कि कोई संख्या अभाज्य थी या नहीं। सवाल यह है कि कौन सी विधि तेज होगी। मुझे संदेह है कि तालिका बहुत तेज़ होगी (मैंने इस दावे का परीक्षण नहीं किया है)।

प्राइम टेबल सॉल्यूशन

एसक्यूएल फ़ंक्शन समाधान

समाधान 0

यहां ट्रांजैक्ट-एसक्यूएल फ़ंक्शन के साथ अभाज्य संख्याएं ढूंढना :

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
–- =============================================
–- Author:        Nicolas Verhaeghe
–- Create date: 12/14/2008
–- Description:   Determines if a given integer is a prime
/*

      SELECT dbo.IsPrime(1)

      SELECT dbo.IsPrime(9)

      SELECT dbo.IsPrime(7867)

*/
–- =============================================
CREATE FUNCTION [dbo].[isPrime]
(
      @NumberToTest int
)
RETURNS bit
AS
BEGIN
      -– Declare the return variable here
      DECLARE @IsPrime bit,
                  @Divider int

      –- To speed things up, we will only attempt dividing by odd numbers

      –- We first take care of all evens, except 2
      IF (@NumberToTest % 2 = 0 AND @NumberToTest > 2)
            SET @IsPrime = 0
      ELSE
            SET @IsPrime = 1 –- By default, declare the number a prime

      –- We then use a loop to attempt to disprove the number is a prime

      SET @Divider = 3 -– Start with the first odd superior to 1

      –- We loop up through the odds until the square root of the number to test
      –- or until we disprove the number is a prime
      WHILE (@Divider <= floor(sqrt(@NumberToTest))) AND (@IsPrime = 1)
      BEGIN

            –- Simply use a modulo
            IF @NumberToTest % @Divider = 0
                  SET @IsPrime = 0
            –- We only consider odds, therefore the step is 2
            SET @Divider = @Divider + 2
      END  

      –- Return the result of the function
      RETURN @IsPrime

END
समाधान 1

यहां के माध्यम से एक और समाधान दिया गया है। कैसे पता करें कि एक चयन कथन के साथ अभाज्य है या अभाज्य? अन्य टिप्पणियों में भी अधिक जानकारी है।

CREATE FUNCTION isPrime
(
    @number INT
)
RETURNS VARCHAR(10)
BEGIN
    DECLARE @prime_or_notPrime INT
    DECLARE @counter INT
    DECLARE @retVal VARCHAR(10)
    SET @retVal = 'FALSE'

    SET @prime_or_notPrime = 1
    SET @counter = 2

    WHILE (@counter <= @number/2 )
    BEGIN

        IF (( @number % @counter) = 0 )
        BEGIN
            set @prime_or_notPrime = 0
            BREAK
        END

        IF (@prime_or_notPrime = 1 )
        BEGIN
            SET @retVal = 'TRUE'
        END

        SET @counter = @counter + 1
    END
    return @retVal
END


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. ग्रुप बाय क्वेरी में लापता महीने शामिल करें

  2. हाइबरनेट के माध्यम से एमएस एसक्यूएल से जुड़ना

  3. SQL सर्वर में sp_depends का उपयोग न करें (यह पदावनत है)

  4. एसक्यूएल सर्वर:कॉलम का डिफ़ॉल्ट मान प्राप्त करें

  5. एमएस एसक्यूएल सर्वर में एक्सटेंडेड स्टोर्ड प्रोसीजर क्या है?