변수
[PowerShell] 변수 설정 / 활용
PowerShell 변수 설정 / 활용 PowerShell 변수 설정 $psVal=11 #Integer [int]$psInt=11 #Boolean (0: False / 1: True) [bool]$psBoolean=0 #String [string]$psString="ssd" PowerShell 변수 사용 [string]$dirPath="C:\vault" Get-Item $dirPath
[MariaDB] Select 검색값 변수에 지정 / 변수로 다시 검색
검색값 변수로 지정 set @value = ([SELECT SQL]); set @value = (select id from object_user where idx=1); Value에 들어갈 항목은 Array.Count = 1 이어야 한다. 해당 변수값으로 검색 select * from object_user where id=@value