Posts by Leandro T • 11 points
3 posts
-
0
votes1
answer27
viewsA: use two merges Matched then on sql server server
I decided that way MERGE tabelaTarget AS target USING (SELECT id, codigo, flag_deletado from tabelaSource) AS source ON (target.ID = source.ID and target.flag_deletado = '') WHEN MATCHED AND…
-
-1
votes1
answer27
viewsQ: use two merges Matched then on sql server server
I’d like to know how to use the second merge I need the following case, knowing that the source is a log, will not happen the "WHEN NOT MATCHED BY SOURCE THEN" MERGE tabelaTarget AS target USING…
-
1
votes2
answers61
viewsQ: Remove a class from a tag with more than one class
I’m learning the web world, so I’m having a hard time even checking to see if there are any similar questions, if I have a similar answer in the forum, I’ll pass on the apology. Now I go to doubt.…