Meta | Nome | Função |
---|---|---|
. |
ponto | um caractere qualquer |
[] |
conjunto | conjunto de caracteres permitidos |
[^] |
conjunto negado | conjunto de caracteres proibidos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<h1>Página secreta!</h1> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELETE FROM AccountingTransactionDescriptionProfile; | |
INSERT INTO AccountingTransactionDescriptionProfile (id_descricao_transacao_contabil, id_perfil) SELECT | |
id_descricao_transacao_contabil, p.id_perfil | |
FROM | |
AccountingTransactionDescriptionMainData | |
LEFT JOIN ProfileMainData p ON 1 = 1 | |
WHERE | |
p.id_perfil IN (62 , 146, 120, 117, 114, 98); | |