博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SHOW CREATE DATABASE Syntax
阅读量:6462 次
发布时间:2019-06-23

本文共 692 字,大约阅读时间需要 2 分钟。

SHOW CREATE {
DATABASE | SCHEMA} [IF NOT EXISTS] db_name

Shows the  statement that creates the named database. If the SHOW statement includes an IF NOT EXISTS clause, the output too includes such a clause.  is a synonym for .

mysql> SHOW CREATE DATABASE test\G *************************** 1. row *************************** Database: test Create Database: CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET utf8mb4 */ mysql> SHOW CREATE SCHEMA test\G *************************** 1. row *************************** Database: test Create Database: CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET utf8mb4 */

 quotes table and column names according to the value of the  option. See .

转载地址:http://qahzo.baihongyu.com/

你可能感兴趣的文章
学习constructor和instanceof的区别
查看>>
Vijos P1881 闪烁的星星
查看>>
ABP理论学习之领域服务
查看>>
使用 Nginx 提升网站访问速度
查看>>
Google 新推出Background sync API
查看>>
Qt 控制watchdog app hacking
查看>>
让所有IE支持HTML5的解决方案
查看>>
RDD之五:Key-Value型Transformation算子
查看>>
SpringCloud(5):快速搭建你的监控中心
查看>>
Android XStream 解析xml数据变成bean,支持CDATA
查看>>
Python高级知识点学习(四)
查看>>
基于SOA的高并发和高可用分布式系统架构和组件详解
查看>>
SQL Server 执行计划利用统计信息对数据行的预估原理以及SQL Server 2014中预估策略的改变...
查看>>
使用命令清除CentOS7中的特定主机名
查看>>
海尔构建全球首个智能制造云平台COSMO
查看>>
历劫与腾飞,2017区块链年度总结与展望
查看>>
数云荣登阿里巴巴2016双十一优质服务商总榜TOP8
查看>>
区块链的希望与原罪:从金融场景谈起
查看>>
eBPF监控工具bcc系列五工具funccount
查看>>
在阿里云Kubernetes容器服务上打造TensorFlow实验室
查看>>