摘要:
case 判断 语句 #!/bin/bash read -p "press some key, then press return:" KEY case $KEY in [a-z]|[A-Z]) echo "it is a letter" exit 1 ;; [0-9]) echo "it is a digit" exit 1 ;... 阅读全文
摘要:
guoguos-MacBook-Pro:myblog guoguo$ mysql -uroot -p123456mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the 阅读全文
摘要:
mysql 删除表时提示有外键 mysql> drop tables auth_group;ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint failsmysql> mysql> my 阅读全文