Writing a T-SQL stored procedure to receive 4 numbers and insert them into a table Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Oracle GoldenGate add trandata errorsMultiple SELECT subqueries in an INSERT statement in a stored procedureMost efficient way to insert rows into a temp table in a stored procedureHow to create Dynamic table in stored procedure?SQL 2005 Unused proceduresSQL server Stored Procedure temp variable value mismatching sometimeUsing T-SQL, is it possible to a split a result set or table and then insert into two different temp tables?Insert results of spBlitzIndex stored procedure into tableSQL Server: Performance Insert Into vs Select IntoSQL Insert Into New Table Or Else Insert Overwrite Into Existing Table

Determinant of a matrix with 2 equal rows

Why does Java have support for time zone offsets with seconds precision?

Will I lose my paid in full property

Where to find documentation for `whois` command options?

Did war bonds have better investment alternatives during WWII?

Why did Israel vote against lifting the American embargo on Cuba?

TV series episode where humans nuke aliens before decrypting their message that states they come in peace

What do you call an IPA symbol that lacks a name (e.g. ɲ)?

Like totally amazing interchangeable sister outfit accessory swapping or whatever

Does using the Inspiration rules for character defects encourage My Guy Syndrome?

Raising a bilingual kid. When should we introduce the majority language?

How to keep bees out of canned beverages?

Variable does not exist: sObjectType (Task.sObjectType)

Why isn't everyone flabbergasted about Bran's "gift"?

Is it OK if I do not take the receipt in Germany?

Translate text contents of an existing file from lower to upper case and copy to a new file

false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'

Deciphering death certificate writing

Why is arima in R one time step off?

Eigenvalues of the Laplacian of the directed De Bruijn graph

Why is water being consumed when my shutoff valve is closed?

What *exactly* is electrical current, voltage, and resistance?

Is there a way to fake a method response using Mock or Stubs?

What is a 'Key' in computer science?



Writing a T-SQL stored procedure to receive 4 numbers and insert them into a table



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Oracle GoldenGate add trandata errorsMultiple SELECT subqueries in an INSERT statement in a stored procedureMost efficient way to insert rows into a temp table in a stored procedureHow to create Dynamic table in stored procedure?SQL 2005 Unused proceduresSQL server Stored Procedure temp variable value mismatching sometimeUsing T-SQL, is it possible to a split a result set or table and then insert into two different temp tables?Insert results of spBlitzIndex stored procedure into tableSQL Server: Performance Insert Into vs Select IntoSQL Insert Into New Table Or Else Insert Overwrite Into Existing Table



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















I need to write a stored procedure to receive 4 numbers and insert them into a table. This is what I've developed so far:



Declare 
@1 Int = 10,
@2 Int = 20,
@3 Int = 30,
@4 Int = 40


Create table #Temp(Num int)
Declare @I char(1) = 1


While (@I <= 4)
Begin

Insert Into #Temp
Select @I

SET @I +=1
end


Select * from #Temp
Drop table #Temp


I know that I can directly and statically insert the inputs into the table but I just want to know is there any better way to do that? I wanted to use a while statement but the problem is the numbers for (I) variable are being inserted into the table!! I mean the output is 1,2,3,4; what I want is 10,20,30,40.










share|improve this question



















  • 1





    you want to insert these values in one column or 4 columns?

    – Learning_DBAdmin
    9 hours ago











  • I want to insert the values in 1 column

    – Pantea Tourang
    7 hours ago











  • Just so you know, in general, looping isn't very "sql"-esque. That doesn't mean it's necessarily bad, but it's a strong yellow flag that you may be using SQL more like a traditional programming language rather than as a query language.

    – David Rice
    1 hour ago

















3















I need to write a stored procedure to receive 4 numbers and insert them into a table. This is what I've developed so far:



Declare 
@1 Int = 10,
@2 Int = 20,
@3 Int = 30,
@4 Int = 40


Create table #Temp(Num int)
Declare @I char(1) = 1


While (@I <= 4)
Begin

Insert Into #Temp
Select @I

SET @I +=1
end


Select * from #Temp
Drop table #Temp


I know that I can directly and statically insert the inputs into the table but I just want to know is there any better way to do that? I wanted to use a while statement but the problem is the numbers for (I) variable are being inserted into the table!! I mean the output is 1,2,3,4; what I want is 10,20,30,40.










share|improve this question



















  • 1





    you want to insert these values in one column or 4 columns?

    – Learning_DBAdmin
    9 hours ago











  • I want to insert the values in 1 column

    – Pantea Tourang
    7 hours ago











  • Just so you know, in general, looping isn't very "sql"-esque. That doesn't mean it's necessarily bad, but it's a strong yellow flag that you may be using SQL more like a traditional programming language rather than as a query language.

    – David Rice
    1 hour ago













3












3








3


1






I need to write a stored procedure to receive 4 numbers and insert them into a table. This is what I've developed so far:



Declare 
@1 Int = 10,
@2 Int = 20,
@3 Int = 30,
@4 Int = 40


Create table #Temp(Num int)
Declare @I char(1) = 1


While (@I <= 4)
Begin

Insert Into #Temp
Select @I

SET @I +=1
end


Select * from #Temp
Drop table #Temp


I know that I can directly and statically insert the inputs into the table but I just want to know is there any better way to do that? I wanted to use a while statement but the problem is the numbers for (I) variable are being inserted into the table!! I mean the output is 1,2,3,4; what I want is 10,20,30,40.










share|improve this question
















I need to write a stored procedure to receive 4 numbers and insert them into a table. This is what I've developed so far:



Declare 
@1 Int = 10,
@2 Int = 20,
@3 Int = 30,
@4 Int = 40


Create table #Temp(Num int)
Declare @I char(1) = 1


While (@I <= 4)
Begin

Insert Into #Temp
Select @I

SET @I +=1
end


Select * from #Temp
Drop table #Temp


I know that I can directly and statically insert the inputs into the table but I just want to know is there any better way to do that? I wanted to use a while statement but the problem is the numbers for (I) variable are being inserted into the table!! I mean the output is 1,2,3,4; what I want is 10,20,30,40.







sql-server t-sql stored-procedures






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 1 hour ago









Glorfindel

1,0711816




1,0711816










asked 10 hours ago









Pantea TourangPantea Tourang

294




294







  • 1





    you want to insert these values in one column or 4 columns?

    – Learning_DBAdmin
    9 hours ago











  • I want to insert the values in 1 column

    – Pantea Tourang
    7 hours ago











  • Just so you know, in general, looping isn't very "sql"-esque. That doesn't mean it's necessarily bad, but it's a strong yellow flag that you may be using SQL more like a traditional programming language rather than as a query language.

    – David Rice
    1 hour ago












  • 1





    you want to insert these values in one column or 4 columns?

    – Learning_DBAdmin
    9 hours ago











  • I want to insert the values in 1 column

    – Pantea Tourang
    7 hours ago











  • Just so you know, in general, looping isn't very "sql"-esque. That doesn't mean it's necessarily bad, but it's a strong yellow flag that you may be using SQL more like a traditional programming language rather than as a query language.

    – David Rice
    1 hour ago







1




1





you want to insert these values in one column or 4 columns?

– Learning_DBAdmin
9 hours ago





you want to insert these values in one column or 4 columns?

– Learning_DBAdmin
9 hours ago













I want to insert the values in 1 column

– Pantea Tourang
7 hours ago





I want to insert the values in 1 column

– Pantea Tourang
7 hours ago













Just so you know, in general, looping isn't very "sql"-esque. That doesn't mean it's necessarily bad, but it's a strong yellow flag that you may be using SQL more like a traditional programming language rather than as a query language.

– David Rice
1 hour ago





Just so you know, in general, looping isn't very "sql"-esque. That doesn't mean it's necessarily bad, but it's a strong yellow flag that you may be using SQL more like a traditional programming language rather than as a query language.

– David Rice
1 hour ago










4 Answers
4






active

oldest

votes


















10














You could also use a table valued parameter type in the stored procedure and pass numbers through this tvp.



Create the type



CREATE TYPE GetNumbers AS TABLE 
( Numbers INT );
GO


Create the procedure



CREATE PROCEDURE dbo.InsertNumbers 
@GetNumbers GetNumbers READONLY
AS
SET NOCOUNT ON;

CREATE TABLE #Temp(Num int);
INSERT INTO #Temp(Num)
SELECT Numbers
FROM @GetNumbers;
SELECT * FROM #Temp;
DROP TABLE #Temp;
GO


Inserting into temp table is not really needed here, only done to keep it the same as the question.



Fill up a variable with data and call the procedure



/* Declare a variable that references the type. */ 
DECLARE @GetNumbers AS GetNumbers;

/* Add data to the table variable. */
INSERT INTO @GetNumbers (Numbers)
VALUES(10),(20),(30),(40);

/* Pass the table variable data to a stored procedure. */
EXEC InsertNumbers @GetNumbers;


The example used and more on tvp's here






share|improve this answer
































    6














    Declare 
    @1 Int = 10,
    @2 Int = 20,
    @3 Int = 30,
    @4 Int = 40

    Create table #Temp(Num int)

    --1st way
    INSERT #Temp(Num)
    SELECT @1
    UNION ALL
    SELECT @2
    UNION ALL
    SELECT @3
    UNION ALL
    SELECT @4


    SELECT * FROM #Temp

    TRUNCATE TABLE #Temp

    --2nd way
    INSERT #Temp(Num)
    VALUES
    (@1),
    (@2),
    (@3),
    (@4)

    SELECT * FROM #Temp

    DROP TABLE #Temp





    share|improve this answer






























      2














      CREATE PROCEDURE dbo.InsertFourValues (@I1 int, @I2 int, @I3 int, @I4 int)
      AS

      BEGIN
      --the table below must already exist
      INSERT INTO dbo.MyTable (MyIntColumn)
      VALUES (@I1), (@I2), (@I3), (@I4);

      END


      Now you just call it using your values:



      EXEC dbo.InsertFourValues (10, 20, 30, 40);





      share|improve this answer






























        1














        The best bet is to do it with a static Insert Statement
        if you really want to do it via a loop you could use the value of @I to determine which value to pass into the insert statement using a case statement would be the best route for that



        I.E.

        While (@I <= 4)
        Begin
        Insert Into #Temp
        Select case @I when 1 then @1
        when 2 then @2
        ect
        End

        SET @I +=1
        end





        share























          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "182"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f235465%2fwriting-a-t-sql-stored-procedure-to-receive-4-numbers-and-insert-them-into-a-tab%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          10














          You could also use a table valued parameter type in the stored procedure and pass numbers through this tvp.



          Create the type



          CREATE TYPE GetNumbers AS TABLE 
          ( Numbers INT );
          GO


          Create the procedure



          CREATE PROCEDURE dbo.InsertNumbers 
          @GetNumbers GetNumbers READONLY
          AS
          SET NOCOUNT ON;

          CREATE TABLE #Temp(Num int);
          INSERT INTO #Temp(Num)
          SELECT Numbers
          FROM @GetNumbers;
          SELECT * FROM #Temp;
          DROP TABLE #Temp;
          GO


          Inserting into temp table is not really needed here, only done to keep it the same as the question.



          Fill up a variable with data and call the procedure



          /* Declare a variable that references the type. */ 
          DECLARE @GetNumbers AS GetNumbers;

          /* Add data to the table variable. */
          INSERT INTO @GetNumbers (Numbers)
          VALUES(10),(20),(30),(40);

          /* Pass the table variable data to a stored procedure. */
          EXEC InsertNumbers @GetNumbers;


          The example used and more on tvp's here






          share|improve this answer





























            10














            You could also use a table valued parameter type in the stored procedure and pass numbers through this tvp.



            Create the type



            CREATE TYPE GetNumbers AS TABLE 
            ( Numbers INT );
            GO


            Create the procedure



            CREATE PROCEDURE dbo.InsertNumbers 
            @GetNumbers GetNumbers READONLY
            AS
            SET NOCOUNT ON;

            CREATE TABLE #Temp(Num int);
            INSERT INTO #Temp(Num)
            SELECT Numbers
            FROM @GetNumbers;
            SELECT * FROM #Temp;
            DROP TABLE #Temp;
            GO


            Inserting into temp table is not really needed here, only done to keep it the same as the question.



            Fill up a variable with data and call the procedure



            /* Declare a variable that references the type. */ 
            DECLARE @GetNumbers AS GetNumbers;

            /* Add data to the table variable. */
            INSERT INTO @GetNumbers (Numbers)
            VALUES(10),(20),(30),(40);

            /* Pass the table variable data to a stored procedure. */
            EXEC InsertNumbers @GetNumbers;


            The example used and more on tvp's here






            share|improve this answer



























              10












              10








              10







              You could also use a table valued parameter type in the stored procedure and pass numbers through this tvp.



              Create the type



              CREATE TYPE GetNumbers AS TABLE 
              ( Numbers INT );
              GO


              Create the procedure



              CREATE PROCEDURE dbo.InsertNumbers 
              @GetNumbers GetNumbers READONLY
              AS
              SET NOCOUNT ON;

              CREATE TABLE #Temp(Num int);
              INSERT INTO #Temp(Num)
              SELECT Numbers
              FROM @GetNumbers;
              SELECT * FROM #Temp;
              DROP TABLE #Temp;
              GO


              Inserting into temp table is not really needed here, only done to keep it the same as the question.



              Fill up a variable with data and call the procedure



              /* Declare a variable that references the type. */ 
              DECLARE @GetNumbers AS GetNumbers;

              /* Add data to the table variable. */
              INSERT INTO @GetNumbers (Numbers)
              VALUES(10),(20),(30),(40);

              /* Pass the table variable data to a stored procedure. */
              EXEC InsertNumbers @GetNumbers;


              The example used and more on tvp's here






              share|improve this answer















              You could also use a table valued parameter type in the stored procedure and pass numbers through this tvp.



              Create the type



              CREATE TYPE GetNumbers AS TABLE 
              ( Numbers INT );
              GO


              Create the procedure



              CREATE PROCEDURE dbo.InsertNumbers 
              @GetNumbers GetNumbers READONLY
              AS
              SET NOCOUNT ON;

              CREATE TABLE #Temp(Num int);
              INSERT INTO #Temp(Num)
              SELECT Numbers
              FROM @GetNumbers;
              SELECT * FROM #Temp;
              DROP TABLE #Temp;
              GO


              Inserting into temp table is not really needed here, only done to keep it the same as the question.



              Fill up a variable with data and call the procedure



              /* Declare a variable that references the type. */ 
              DECLARE @GetNumbers AS GetNumbers;

              /* Add data to the table variable. */
              INSERT INTO @GetNumbers (Numbers)
              VALUES(10),(20),(30),(40);

              /* Pass the table variable data to a stored procedure. */
              EXEC InsertNumbers @GetNumbers;


              The example used and more on tvp's here







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited 8 hours ago

























              answered 8 hours ago









              Randi VertongenRandi Vertongen

              5,2611926




              5,2611926























                  6














                  Declare 
                  @1 Int = 10,
                  @2 Int = 20,
                  @3 Int = 30,
                  @4 Int = 40

                  Create table #Temp(Num int)

                  --1st way
                  INSERT #Temp(Num)
                  SELECT @1
                  UNION ALL
                  SELECT @2
                  UNION ALL
                  SELECT @3
                  UNION ALL
                  SELECT @4


                  SELECT * FROM #Temp

                  TRUNCATE TABLE #Temp

                  --2nd way
                  INSERT #Temp(Num)
                  VALUES
                  (@1),
                  (@2),
                  (@3),
                  (@4)

                  SELECT * FROM #Temp

                  DROP TABLE #Temp





                  share|improve this answer



























                    6














                    Declare 
                    @1 Int = 10,
                    @2 Int = 20,
                    @3 Int = 30,
                    @4 Int = 40

                    Create table #Temp(Num int)

                    --1st way
                    INSERT #Temp(Num)
                    SELECT @1
                    UNION ALL
                    SELECT @2
                    UNION ALL
                    SELECT @3
                    UNION ALL
                    SELECT @4


                    SELECT * FROM #Temp

                    TRUNCATE TABLE #Temp

                    --2nd way
                    INSERT #Temp(Num)
                    VALUES
                    (@1),
                    (@2),
                    (@3),
                    (@4)

                    SELECT * FROM #Temp

                    DROP TABLE #Temp





                    share|improve this answer

























                      6












                      6








                      6







                      Declare 
                      @1 Int = 10,
                      @2 Int = 20,
                      @3 Int = 30,
                      @4 Int = 40

                      Create table #Temp(Num int)

                      --1st way
                      INSERT #Temp(Num)
                      SELECT @1
                      UNION ALL
                      SELECT @2
                      UNION ALL
                      SELECT @3
                      UNION ALL
                      SELECT @4


                      SELECT * FROM #Temp

                      TRUNCATE TABLE #Temp

                      --2nd way
                      INSERT #Temp(Num)
                      VALUES
                      (@1),
                      (@2),
                      (@3),
                      (@4)

                      SELECT * FROM #Temp

                      DROP TABLE #Temp





                      share|improve this answer













                      Declare 
                      @1 Int = 10,
                      @2 Int = 20,
                      @3 Int = 30,
                      @4 Int = 40

                      Create table #Temp(Num int)

                      --1st way
                      INSERT #Temp(Num)
                      SELECT @1
                      UNION ALL
                      SELECT @2
                      UNION ALL
                      SELECT @3
                      UNION ALL
                      SELECT @4


                      SELECT * FROM #Temp

                      TRUNCATE TABLE #Temp

                      --2nd way
                      INSERT #Temp(Num)
                      VALUES
                      (@1),
                      (@2),
                      (@3),
                      (@4)

                      SELECT * FROM #Temp

                      DROP TABLE #Temp






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered 9 hours ago









                      Denis RubashkinDenis Rubashkin

                      66318




                      66318





















                          2














                          CREATE PROCEDURE dbo.InsertFourValues (@I1 int, @I2 int, @I3 int, @I4 int)
                          AS

                          BEGIN
                          --the table below must already exist
                          INSERT INTO dbo.MyTable (MyIntColumn)
                          VALUES (@I1), (@I2), (@I3), (@I4);

                          END


                          Now you just call it using your values:



                          EXEC dbo.InsertFourValues (10, 20, 30, 40);





                          share|improve this answer



























                            2














                            CREATE PROCEDURE dbo.InsertFourValues (@I1 int, @I2 int, @I3 int, @I4 int)
                            AS

                            BEGIN
                            --the table below must already exist
                            INSERT INTO dbo.MyTable (MyIntColumn)
                            VALUES (@I1), (@I2), (@I3), (@I4);

                            END


                            Now you just call it using your values:



                            EXEC dbo.InsertFourValues (10, 20, 30, 40);





                            share|improve this answer

























                              2












                              2








                              2







                              CREATE PROCEDURE dbo.InsertFourValues (@I1 int, @I2 int, @I3 int, @I4 int)
                              AS

                              BEGIN
                              --the table below must already exist
                              INSERT INTO dbo.MyTable (MyIntColumn)
                              VALUES (@I1), (@I2), (@I3), (@I4);

                              END


                              Now you just call it using your values:



                              EXEC dbo.InsertFourValues (10, 20, 30, 40);





                              share|improve this answer













                              CREATE PROCEDURE dbo.InsertFourValues (@I1 int, @I2 int, @I3 int, @I4 int)
                              AS

                              BEGIN
                              --the table below must already exist
                              INSERT INTO dbo.MyTable (MyIntColumn)
                              VALUES (@I1), (@I2), (@I3), (@I4);

                              END


                              Now you just call it using your values:



                              EXEC dbo.InsertFourValues (10, 20, 30, 40);






                              share|improve this answer












                              share|improve this answer



                              share|improve this answer










                              answered 3 hours ago









                              Queue MannQueue Mann

                              48237




                              48237





















                                  1














                                  The best bet is to do it with a static Insert Statement
                                  if you really want to do it via a loop you could use the value of @I to determine which value to pass into the insert statement using a case statement would be the best route for that



                                  I.E.

                                  While (@I <= 4)
                                  Begin
                                  Insert Into #Temp
                                  Select case @I when 1 then @1
                                  when 2 then @2
                                  ect
                                  End

                                  SET @I +=1
                                  end





                                  share



























                                    1














                                    The best bet is to do it with a static Insert Statement
                                    if you really want to do it via a loop you could use the value of @I to determine which value to pass into the insert statement using a case statement would be the best route for that



                                    I.E.

                                    While (@I <= 4)
                                    Begin
                                    Insert Into #Temp
                                    Select case @I when 1 then @1
                                    when 2 then @2
                                    ect
                                    End

                                    SET @I +=1
                                    end





                                    share

























                                      1












                                      1








                                      1







                                      The best bet is to do it with a static Insert Statement
                                      if you really want to do it via a loop you could use the value of @I to determine which value to pass into the insert statement using a case statement would be the best route for that



                                      I.E.

                                      While (@I <= 4)
                                      Begin
                                      Insert Into #Temp
                                      Select case @I when 1 then @1
                                      when 2 then @2
                                      ect
                                      End

                                      SET @I +=1
                                      end





                                      share













                                      The best bet is to do it with a static Insert Statement
                                      if you really want to do it via a loop you could use the value of @I to determine which value to pass into the insert statement using a case statement would be the best route for that



                                      I.E.

                                      While (@I <= 4)
                                      Begin
                                      Insert Into #Temp
                                      Select case @I when 1 then @1
                                      when 2 then @2
                                      ect
                                      End

                                      SET @I +=1
                                      end






                                      share











                                      share


                                      share










                                      answered 9 hours ago









                                      saihtam8saihtam8

                                      665




                                      665



























                                          draft saved

                                          draft discarded
















































                                          Thanks for contributing an answer to Database Administrators Stack Exchange!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid


                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.

                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function ()
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f235465%2fwriting-a-t-sql-stored-procedure-to-receive-4-numbers-and-insert-them-into-a-tab%23new-answer', 'question_page');

                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          Bett Inhaltsverzeichnis Geschichte | Bettformen | Bettgrößen | Andere Bezeichnungen | Bettenmangel | Betten in der bildenden Kunst | Schlafmedizinische Gesichtspunkte | Siehe auch | Literatur | Weblinks | Einzelnachweise | NavigationsmenüBett, Bettstatt, BettstelleCommons: BettBabybetten: Anwendung, Ausstattungsmerkmale und VergleichskriterienWasserbetten. Vorurteile im TestHapfnNursch10.1007/s11818-012-0584-74006250-8AKS4329276-8

                                          Luksemburg Sisukord Nimi | Asend | Loodus | Riigikord | Haldusjaotus | Rahvastik | Riigikaitse | Majandus | Taristu | Ajalugu | Eesti ja Luksemburgi suhted | Haridus | Kultuur | Vaata ka | Viited | Välislingid | Navigeerimismenüü50° N, 6° EÜlevaade Luksemburgi kaitsealadest.Luksemburgi rahvaarv. Statistikaamet.World Bank'i andmebaasÜlevaade Luksemburgi loodusest.Ülevaade Luksemburgi metsadest.Guy Colling. "Red List of the Vascular Plants of Luxembourg." Travaux scientifiques du Musée national d’histoire naturelle Luxembourg. 2005.Luxembourg’s biodiversity at risk.Maailma kahepaiksete andmebaas.Denis Lepage. "Luxembourg." Avibase.Ülevaade temperatuuridest. Luksemburgi meteoroloogiateenistus.Ülevaade Luksemburgist. Euroopa Liidu esinduse koduleht.Système politique. TerritoireÜlevaade Luksemburgi rahvastikust. Luksemburgi statistikaamet.Luksemburgi rahvastik. Luksemburgi statistikaamet.The World FactbookMonique Borsenberger, Paul Dickes. "Religions au Luxembourg. Quelle évolution entre 1999-2008". Luksemburgi statistikaamet. 2011.Luksemburgi peapiiskopkond. Catholic-Hierarchy.Luksemburgi armee koduleht.Luksemburgi armee relvastus.Eesti Välisministeerium.Luksemburgi rahvastik. Luksemburgi statistikaamet.Luksemburgi Eesti Seltsi koduleht.Helen Eelrand. "Raadio, mis muutis maailma." Eesti Päevaleht. 13. märts 2004.Ülevaade Luksemburgi haridussüsteemist.Ülevaade Luksemburgi keskkoolidest.Luksemburgr

                                          Valle di Casies Indice Geografia fisica | Origini del nome | Storia | Società | Amministrazione | Sport | Note | Bibliografia | Voci correlate | Altri progetti | Collegamenti esterni | Menu di navigazione46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)Sito istituzionaleAstat Censimento della popolazione 2011 - Determinazione della consistenza dei tre gruppi linguistici della Provincia Autonoma di Bolzano-Alto Adige - giugno 2012Numeri e fattiValle di CasiesDato IstatTabella dei gradi/giorno dei Comuni italiani raggruppati per Regione e Provincia26 agosto 1993, n. 412Heraldry of the World: GsiesStatistiche I.StatValCasies.comWikimedia CommonsWikimedia CommonsValle di CasiesSito ufficialeValle di CasiesMM14870458910042978-6