mysql 对系统表的查询

##原表
##SHOWTABLESWHEREtables_in_ondemand1NOTLIKE'%20%'

##备份表
##SHOWTABLESWHEREtables_in_ondemand1LIKE'%20%'

##原表
SHOWTABLES
WHEREtables_in_ondemand1NOTLIKE'%20%';

##备份表
SHOWTABLES
WHEREtables_in_ondemand1LIKE'%20%';

SHOWTABLES
WHEREtables_in_ondemand1LIKE'%order_flowe%';

你可能感兴趣的:(mysql,查询,系统表)