-
-
Posts recentes
Comentários
Arquivos
- setembro 2023
- junho 2023
- janeiro 2023
- agosto 2022
- julho 2022
- dezembro 2021
- março 2021
- fevereiro 2021
- outubro 2020
- agosto 2020
- julho 2020
- junho 2020
- maio 2020
- março 2020
- fevereiro 2020
- agosto 2019
- janeiro 2019
- dezembro 2018
- novembro 2018
- setembro 2018
- junho 2018
- dezembro 2017
- setembro 2017
- agosto 2017
- maio 2017
- abril 2017
- dezembro 2016
- novembro 2016
- julho 2016
- agosto 2015
- julho 2015
- março 2015
- janeiro 2015
- julho 2014
- junho 2014
- maio 2014
- abril 2014
- dezembro 2013
- setembro 2013
- janeiro 2013
- dezembro 2012
- agosto 2012
- julho 2012
- junho 2012
- maio 2012
- abril 2012
- março 2012
- fevereiro 2012
Categorias
Mês: maio 2017
Gerar Query Insert Automaticamente
A procedure abaixo cria query INSERT a partir dos registros de uma tabela no SQL Server. [sql] CREATE PROC [dbo].[InsertGenerator] (@tableName varchar(100)) as –Declare a cursor to retrieve column specific information –for the specified table DECLARE cursCol CURSOR FAST_FORWARD FOR SELECT column_name,data_type FROM information_schema.columns WHERE table_name = @tableName OPEN cursCol DECLARE @string nvarchar(3000) –for storing […]
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> SQL
<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> Consulta SQL, Query, SQL Server
Leave a comment
Verificar se valor existe na String Javascript
Algumas formas de verificar se valor existe em uma string utilizando JavaScript. 1. (ES6) includes [js] var string = “foo”, substring = “oo”; string.includes(substring); [/js] 2. search [js] var string = “foo”, expr = “/oo/”; string.search(expr); [/js] 3. lodash includes [js] var string = “foo”, substring = “oo”; _.includes(string, substring); [/js] 4. RegExp [js] var […]
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span> JavaScript
<span class="entry-utility-prep entry-utility-prep-tag-links">Tagged</span> Include JavaScript, JavaScript
Leave a comment