• 맑음동두천 12.5℃
  • 맑음강릉 13.2℃
  • 맑음서울 13.4℃
  • 맑음대전 14.0℃
  • 구름조금대구 15.1℃
  • 구름많음울산 14.4℃
  • 맑음광주 12.9℃
  • 구름조금부산 17.3℃
  • 맑음고창 13.0℃
  • 구름많음제주 15.2℃
  • 맑음강화 11.3℃
  • 맑음보은 13.1℃
  • 맑음금산 13.7℃
  • 맑음강진군 14.8℃
  • 구름많음경주시 14.7℃
  • 구름많음거제 14.6℃
기상청 제공

mysql에서 fonction 생성과 관련된 옵션

// mysql root password 등록


[root@linux mysql]# mysql -u root -p mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 1 to server version: 4.0.23-Max

Type 'help;' or 'h' for help. Type 'c' to clear the buffer.


mysql> update user set password=password('비밀번호입력') where user='root';
Query OK, 2 rows affected (0.00 sec)
Rows matched: 2  Changed: 2  Warnings: 0


mysql> flush privileges;  <==  mysql 재시동
Query OK, 0 rows affected (0.00 sec)


mysql> quit


// 접속 확인하기

[root@linux mysql]# mysql -u root -p mysql
Enter password:
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 4 to server version: 4.0.23-Max

Type 'help;' or 'h' for help. Type 'c' to clear the buffer.