Mysql版本查看

  
  
  
  
  1. Mysql版本查看 
  2. [root@station7 ~]# mysql -V 
  3. mysql Ver 14.14 Distrib 5.1.52, for redhat-linux-gnu (x86_64) using readline 5.1 
  4. [root@station7 ~]# mysql --help | grep -i Distrib 
  5. mysql Ver 14.14 Distrib 5.1.52, for redhat-linux-gnu (x86_64) using readline 5.1 and you are welcome to modify and redistribute it under the GPL v2 license 
  6.  
  7. [root@station7 ~]# mysql 
  8. Welcome to the MySQL monitor. Commands end with ; or \g. 
  9. Your MySQL connection id is 6481 
  10. Server version: 5.5.20-ndb-7.2.5-log Source distribution 
  11. Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved. 
  12. This software comes with ABSOLUTELY NO WARRANTY. This is free software,and you are welcome to modify and redistribute it under the GPL v2 license 
  13. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
  14.  
  15. mysql> status; 
  16. -------------- 
  17. mysql Ver 14.14 Distrib 5.1.52, for redhat-linux-gnu (x86_64) using readline 5.1 
  18. Connection id: 6481 
  19. Current database
  20. Current user: root@localhost 
  21. SSL: Not in use 
  22. Current pager: stdout 
  23. Using outfile: '' 
  24. Using delimiter: ; 
  25. Server version: 5.5.20-ndb-7.2.5-log Source distribution 
  26. Protocol version: 10 
  27. Connection: Localhost via UNIX socket 
  28. Server characterset: latin1 
  29. Db characterset: latin1 
  30. Client characterset: latin1 
  31. Conn. characterset: latin1 
  32. UNIX socket: /var/run/mysqld/mysql5.socket 
  33. Uptime: 5 hours 13 min 11 sec 
  34. Threads: 1 Questions: 41459 Slow queries: 0 Opens: 53 Flush tables: 1 Open tables: 46 Queries per second avg: 2.206 
  35.  
  36. -------------- 
  37. mysql> select version(); 
  38. +----------------------+ 
  39. | version() | 
  40. +----------------------+ 
  41. | 5.5.20-ndb-7.2.5-log | 
  42. +----------------------+ 
  43. 1 row in set (0.00 sec) 
  44. mysql> quit 
  45. Bye 
  46. [root@station7 ~]# 

 

你可能感兴趣的:(oracle,mysql,数据库)