FC7安装MySQL
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-11
########## [100%]
检查服务器是否正常: [root@fc7linux cdrom]# service mysql status MySQL running (32158) [确定] 进入MySQL服务器进行操作: [root@fc7linux cdrom]# mysql Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 1 Server version: 5.1.22-rc-community MySQL Community Edition (GPL) Type ''help;'' or ''h'' for help. Type ''c'' to clear the buffer. 查看数据库: 拥有帝国一切,皆有可能。欢迎访问phome.net mysql> show databases; -------------------- | Database | -------------------- | information_schema | | mysql | | test | -------------------- 3 rows in set (0.01 sec) 创建数据库YY: mysql> create datebase yy; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''datebase yy'' at line 1 mysql> create database yy; Query OK, 1 row affected (0.00 sec) 再查看数据库,就都了一个YY数据库: mysql> show databases; -------------------- | Database | -------------------- | information_schema | | mysql | | test | | yy | -------------------- 4 rows in set (0.00 sec) 进入YY数据库: mysql> use yy; Database changed 在YY数据库中创建表test: mysql> create table test -> ( -> a char(3), -> b char(3), -> c char(3) -> ); Query OK, 0 rows affected (0.01 sec) 查看表test的内容: mysql> select * from test; Empty set (0.02 sec) 向test表插入数据: mysql> insert into test values( -> ''1'',''3'',''4''); Query OK, 1 row affected (0.00 sec) 再查看test表的内容: mysql> select * from test; ------ ------ ------ | a | b | c | ------ ------ ------ | 1 | 3 | 4 | ------ ------ ------ 1 row in set (0.00 sec) 退出数据库: mysql> exit Bye [root@fc7linux cdrom]# 拥有帝国一切,皆有可能。欢迎访问phome.net |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 用tar来备份ubuntu系统下一篇: LINUX 系统基准安全配置步骤
关于FC7安装MySQL的所有评论