mysqlcheck.result

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 81 行

RESULT
81
字号
DROP TABLE IF EXISTS t1;drop view if exists v1;drop database if exists client_test_db;mysql.columns_priv                                 OKmysql.db                                           OKmysql.func                                         OKmysql.help_category                                OKmysql.help_keyword                                 OKmysql.help_relation                                OKmysql.help_topic                                   OKmysql.host                                         OKmysql.proc                                         OKmysql.procs_priv                                   OKmysql.tables_priv                                  OKmysql.time_zone                                    OKmysql.time_zone_leap_second                        OKmysql.time_zone_name                               OKmysql.time_zone_transition                         OKmysql.time_zone_transition_type                    OKmysql.user                                         OKmysql.columns_priv                                 OKmysql.db                                           OKmysql.func                                         OKmysql.help_category                                OKmysql.help_keyword                                 OKmysql.help_relation                                OKmysql.help_topic                                   OKmysql.host                                         OKmysql.proc                                         OKmysql.procs_priv                                   OKmysql.tables_priv                                  OKmysql.time_zone                                    OKmysql.time_zone_leap_second                        OKmysql.time_zone_name                               OKmysql.time_zone_transition                         OKmysql.time_zone_transition_type                    OKmysql.user                                         OKcreate table t1 (a int);create view v1 as select * from t1;test.t1                                            OKtest.t1                                            OKdrop view v1;drop table t1;create database d_bug25347;use d_bug25347;create table t_bug25347 (a int);create view v_bug25347 as select * from t_bug25347;insert into t_bug25347 values (1),(2),(3);flush tables;removing and creatingd_bug25347.t_bug25347Error    : Incorrect file format 't_bug25347'error    : Corruptinsert into t_bug25347 values (4),(5),(6);ERROR HY000: Incorrect file format 't_bug25347'd_bug25347.t_bug25347warning  : Number of rows changed from 0 to 3status   : OKinsert into t_bug25347 values (7),(8),(9);select * from t_bug25347;a123789select * from v_bug25347;a123789drop view v_bug25347;drop table t_bug25347;drop database d_bug25347;use test;End of 5.0 tests

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?