Get-AppxPackage | Remove-AppxPackage
C:\Windows\System32\Sysprep
и запустить Sysprep.exe
SELECT *
FROM Nakladnaya
INNER JOIN Zakaz
ON Nakladnaya.ZakazNomer=Zakaz.Nomer
INNER JOIN Product
ON Nakladnaya.ProductId=Product.ID
SELECT z.Nomer, GROUP_CONCAT(p.Name SEPARATOR ', ')
FROM Nakladnaya as n
INNER JOIN Product as p ON n.ProductID = p.ID
INNER JOIN Zakaz as z ON n.ZakazNomer = z.Nomer
GROUP BY z.Nomer
Sub concat()
txt = Range("B1").Text
Range("A1").Select
Set hCell = ActiveCell
For Each cell In Range("A1:A20")
If cell.Value <> "" Or cell.Offset(0, 1).Value = "" Then
hCell.Offset(0, 1).Value = txt
cell.Select
Set hCell = ActiveCell
txt = ""
End If
If cell.Offset(0, 1).Value = "" Then
Exit Sub
End If
txt = txt + vbCrLf + cell.Offset(0, 1).Text
' Очистка ячейки
cell.Offset(0, 1).Value = ""
Next
End Sub
static RunPython.noop()¶
New in Django 1.8.
Pass the RunPython.noop method to code or reverse_code when you want the operation not to do anything in the given direction. This is especially useful in making the operation reversible.
'<текст запроса>' . $num .';'
$row = $db->querySingle('SELECT * FROM data WHERE Id='.$num.';', ',true);
$a = "var";
echo 'sample - $a';
>> sample - $a
echo "sample - $a";
>> sample - var
hash["price"] = "5 000".sub!(" ", "")
=> "5000"
sub!
изменит значение в хэше. Если нужно просто передать строку с суммой, но не изменять хэш - просто "sub". >>> a
'927 0000000 927 0199999'
>>> re.sub('\d{7}', lambda x: '%'*len(x.group()), a)
'927 %%%%%%% 927 %%%%%%%'
>>>
lambda x: '%' * len(x.group())