From 328c6a91171a45447d4ff43ce970944a738eff3a Mon Sep 17 00:00:00 2001 From: Nuno Miranda <38939683+nuno-miranda@users.noreply.github.com> Date: Fri, 16 Aug 2019 04:55:29 +0100 Subject: [PATCH] Table fix (#28185) Table was not properly formated --- .../sql/sql-select-into-statement/index.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/guide/portuguese/sql/sql-select-into-statement/index.md b/guide/portuguese/sql/sql-select-into-statement/index.md index dbcedc4ae4..cc154cfc5c 100644 --- a/guide/portuguese/sql/sql-select-into-statement/index.md +++ b/guide/portuguese/sql/sql-select-into-statement/index.md @@ -24,11 +24,17 @@ Este exemplo mostra um conjunto de uma tabela que foi "copiada" da tabela "Forne `sql SELECT * INTO SupplierUSA FROM Supplier WHERE Country = 'USA';` **Resultados** : 4 linhas afetadas 2 -| ID | CompanyName | ContactName | Cidade | País | Telefone | | ---- | ----------------------------- |: ------------- -: | ------------- |: --------: |: --------------: | | 2 | Nova Orleans Cajun Delights | Shelley Burke | Nova Orleans | EUA | (100) 555-4822 | | 3 | Homestead da avó Kelly | Regina Murphy | Ann Arbor | EUA | (313) 555-5735 | | 16 | Cervejas Bigfoot | Cheryl Saylor | Curva | EUA | NULL | | 19 | Nova Inglaterra Seafood Cannery | Robb Merchant | Boston | EUA | (617) 555-3267 | - +``` +| ID | CompanyName | ContactName | Cidade | País | Telefone | +| -- | --------- |: -----------: | ------ |: ---: |: -----: | +| 2 | Nova Orleans Cajun Delights | Shelley Burke | Nova Orleans | EUA | (100) 555-4822 | +| 3 | Homestead da avó Kelly | Regina Murphy | Ann Arbor | EUA | (313) 555-5735 | +| 16 | Cervejas Bigfoot | Cheryl Saylor | Curva | EUA | NULL | +| 19 | Nova Inglaterra Seafood Cannery | Robb Merchant | Boston | EUA | (617) 555-3267 | +``` Por favor, consulte o manual do seu gerenciador de banco de dados e divirta-se tentando opções diferentes. ## Fontes 1. (Microsoft - Inserindo linhas usando SELECT INTO) \[https://technet.microsoft.com/en-us/library/ms190750 (v = sql.105) .aspx\] -2. (dofactory - Instrução SQL SELECT INTO) \[http://www.dofactory.com/sql/select-into\] \ No newline at end of file +2. (dofactory - Instrução SQL SELECT INTO) \[http://www.dofactory.com/sql/select-into\]