mysql举例分析


下文内容主要给大家带来mysql举例分析,这里所讲到的知识,与书籍略有不同,都是开发云专业技术人员在与用户接触过程中,总结出来的,具有一定的经验分享价值,希望给广大读者带来帮助。mysql安装不介绍,mysql -uroot -p
mysql> show databases;
+——————–+
| Database |
+——————–+
| information_schema |
| mysql |
| performance_schema |
| test |
+——————–+
4 rows in set (0.02 sec)
创建表
mysql> create database publications;
Query OK, 1 row affected (0.00 sec)
查看表并使用
mysql> show databases;
+——————–+
| Database |
+——————–+
| information_schema |
| mysql |
| performance_schema |
| publications |
| test |
+——————–+
5 rows in set (0.00 sec)mysql> use publications;
Database changed
创建数据库管理用户
mysql> *grant all on publications. to ‘huang’@’localhost’ identified by “123456”;
Query OK, 0 rows affected (0.00 sec)
更新权限
mysql>
flush privileges;
Query OK, 0 rows affected (0.00 sec)
创建表 查看表
mysql> create table classics(author varchar(128), title varchar(128), type varchar(16), year char(4));**
Query OK, 0 rows affected (0.01 sec)mysql> desc classics;
+——–+————–+——+—–+———+——-+
| Field | Type | Null | Key | Default | Extra |
+——–+————开发云主机域名–+——+—–+———+——-+
| author | varchar(128) | YES | | NULL | |
| title | varchar(128) | YES | | NULL | |
| type | varchar(16) | YES | | NULL | |
| year | char(4) | YES | | NULL | |
+——–+————–+——+—–+———+——-+
4 rows in set (0.00 sec)
删除表
mysql> drop table classics;
Query OK, 0 rows affected (0.00 sec)再次创建表,增加id选项
mysql> create table classics(author varchar(128), title varchar(128), type varchar(16), year char(4),id INT unsigned not null auto_increment key)ENGINE MyISAM;
Query OK, 0 rows affected (0.01 sec)
删除id选项
mysql> alter table classics drop id;
Query OK, 0 rows affected (0.00 sec)
Records: 0 Duplicates: 0 Warnings: 0表中插入数据
mysql> insert into classics(author,title,type,year)
-> values(“mark twain”,”muguangzhicheng”,’fiction’,”1876″);

Query OK, 1 row affected (0.00 sec)mysql> insert into classics(author,title,type,year) values(“frank hello”,”xianglongshibazhang”,’fiction’,”1856″);
Query OK, 1 row affected (0.00 sec)mysql> insert into classics(author,title,type,year) values(“world go”,”shgendiaoxialv”,’play’,”1841″);
Query OK, 1 row affected (0.00 sec)mysql> insert into classics(author,title,type,year) values(“nale”,”xiakexing”,’play’,”1541″);
Query OK, 1 row affected (0.00 sec)mysql> select * from classics;
+————-+———————+———+——+
| author | title | type | year |
+————-+———————+———+——+
| mark twain | muguangzhicheng | fiction | 1876 |
| frank hello | xianglongshibazhang | fiction | 1856 |
| world go | shgendiaoxialv | play | 1841 |
| nale | xiakexing | play | 1541 |
+————-+———————+———+——+
4 rows in set (0.00 sec)更改表名称
mysql> alter table classics rename pre1900;
Query OK, 0 rows affected (0.00 sec)mysql> show tables;
+————————+
| Tables_in_publications |
+————————+
| pre1900 |
+————————+
1 row in set (0.00 sec)对于以上关于mysql举例分析,如果大家还有更多需要了解的可以持续关注我们开发云的行业推新,如需获取专业解答,可在官网联系售前售后的,希望该文章可给大家带来一定的知识更新。

相关推荐: MySQL null值字段是否使用索引的总结

null和not null索引失效与否主要与表中字段的设立有关系,分为相应的两种情况,当对不能是null的字段使用索引时,条件无论是null或者not null 索引都失效,当对能是null的字段使用索引时,条件无论是null或者not null 索引都生效.…

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

(0)
打赏 微信扫一扫 微信扫一扫
上一篇 06/07 16:22
下一篇 06/07 16:22

相关推荐