MySQL 데이터베이스 테이블 열을 업데이트하고 싶습니다.엑스. mysql>
프롬프트에서 대화형으로 수행 하지 않고도 이 작업을 어떻게 수행할 수 있습니까 ? 간단한 명령으로 이 작업을 수행하고 싶습니다.
답변1
다음과 같이 mysql
옵션을 사용하여 명령을 실행할 수 있습니다 .-e
$ mysql -u user -pPASSWORD -e 'UPDATE QUERY;'
~에서man mysql
--execute=statement, -e statement
Execute the statement and quit. The default output format is like that
produced with --batch. See Section 4.2.4, “Using Options on the
Command Line”, for some examples. With this option, mysql does not use
the history file.
시도 해봐!
참고: 비밀번호를 한 줄에 입력하는 것은 권장되지 않습니다.