随笔分类 - MySql
摘要:1. show create table mysql> show create table t \G*************************** 1. row *************************** Table: tCreate Table: CREATE TABLE `t
阅读全文
摘要:1. No query specified 出现此错误是sql不合法原因:比如: mysql> select * from t\G;*************************** 1. row ***************************a: 1b: 21 row in set (
阅读全文
摘要:mysql> select user();+ +| user() |+ +| root@localhost |+ +1 row in set (0.00 sec) mysql> select database();+ +| database() |+ +| information_schema |+
阅读全文
摘要:win7 + mysql 5.6.35 C:\Windows\system32>mysql --versionmysql Ver 14.14 Distrib 5.6.35, for Win64 (x86_64) 以下步骤如果添加了MySQL的环境变量,则可以直接运行mysql有关命令,否则必须到my
阅读全文
摘要:1. show databases mysql> show databases;+ +| Database |+ +| information_schema || mysql || performance_schema || test |+ +4 rows in set (0.00 sec) 2.
阅读全文