问题描述 - 正常删除表格的方法 ```bash 禁用表 disable "TRIPDB:trip_sample" 删除表 drop "TRIPDB:trip_sample" ``` 但是操作过程中出现如下的问题 - 已经禁用表 ```bash hbase(main):005:0> disable ...
分类: Debug记录
-
多表连接过滤条件在 on 和 where 的区别
前言介绍 最近项目中的小坑,记录一下。 数据准备 ```sql create table student ( sid int primary key not null , cid int null, t_sex varchar(20) null ) comment '学生表'; create tab...