전체 글 511

[ FLUTTER ] CocoaPods 오류

sudo gem uninstall cocoapods sudo gem install cocoapods https://smilehugo.tistory.com/entry/cocoapods-installed-but-not-initialized CocoaPods 설치한 후 초기화가 안될 때 (Flutter MacOS 셋업) Flutter(1.9.1+hotflix.2)를 맥OS에 설치를 할때 CocoaPods 설치한 후 초기화(Initialize)를 실행하면 아무런 표시가 안뜨는 것을 확인할 수 있고 flutter doctor를 실행해서 현재 flutter 셋업 상태를 확인할 때,.. smilehugo.tistory.com

Team/난감했던 이슈들 거북 2021.10.26

[ MYSQL ] DATETIME Null값 체크

증상 DATETIME 수정이 일어난 경우 0000-00-00 이 기본 값으로 입력됨 해결 UNIXTIME 기준으로 검증한다 IF(UNIX_TIMESTAMP(O.delivery_complete_time) = 0,'미입력', O.delivery_complete_time) AS delivery_complete_time 관련링크 https://stackoverflow.com/questions/559590/selecting-empty-mysql-datetime-fields Selecting empty mysql datetime fields Is there a better way to select empty datetime fields than this? SELECT * FROM `table` WHERE `date..

DB/MYSQL 라넌.B 2021.10.21