多选题
在以下的SQL语句中,哪一个将显示目前无效的(invalid)所有位图索引的名字? A.SELECT index_name, tablespace_name, index_type, status FROM dba_ind_columns WHERE status='INVALID'; B.SELECT index_name, tablespace_name, index_type, status FROM dba_indexes WHERE status='INVALID' AND index_type='BITMAP'; C.SELECT index_name, tabtespace_name, index_type, staus FROM dba_indexes WHERE status='INVALID'; D.SELECT tablespace_name, index_type, status FROM dba_indexes WHERE status='INVALID' AND index_type='BITMAP';