FORMAT
Posts
2 postsMSSQL 에서 Getdate()함수로 얻은 포맷 자유로이 변환하기
MSSQL 에서 Getdate()함수로 얻은 포맷 자유로이 변환하기 --Getdate() Select Getdate()--YYYY/MM/DD Select Convert(varchar(10),Getdate(),111)--YYYYMMDD Select Convert(varchar(10),Getdate(),112)--HH:MM:SS Select Convert(varchar(8),Getdate(),108)--HH:MM:SS:mmm Select Convert(varchar(
[Python] pip list 시 --format=(legacy|columns) 과 같은 경고가 나오면
바로 이전 블로그에서 pip로 설치할 수 있는 패키지 만드는 법을 올렸었는데요, 아마 맥이나 리눅스에서 최신 pip 로 list 명령을 내리다보면, $ pip listDEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.amqp (1.4.9)aniso8601 (1.2.0)ansible (2.2.1.0)... 와 같이 나옵니다. 안나오던 경고가 나오던데... $ pip list -



