mysql 基本操作 四
Posted 生心无住
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 基本操作 四相关的知识,希望对你有一定的参考价值。
1.临时表
当绘画结束时,临时表会自动销毁,无法用show tables 查看 临时表。
MariaDB [jason]> create temporary table tmp(pro char(30),city char(30)); Query OK, 0 rows affected (0.01 sec) MariaDB [jason]> insert into tmp values(‘shanghai‘,‘shanghai‘); Query OK, 1 row affected (0.00 sec) MariaDB [jason]> select * from tmp; +----------+----------+ | pro | city | +----------+----------+ | shanghai | shanghai | +----------+----------+ 1 row in set (0.00 sec) MariaDB [jason]> drop table tmp; Query OK, 0 rows affected (0.01 sec)
以上是关于mysql 基本操作 四的主要内容,如果未能解决你的问题,请参考以下文章