• 2022-06-09
    大数据和人工智能技术应用于医学领域可以做心脏病的预测等,thalach(心跳)数值作为非常重要的特征参与计算预测的样本数据,进入预测模型训练前需要对样本数据进行简单清洗过滤去除异常值,假设样本数据存放在Hive表中,过滤出thalach数小于200大于10的正常值,表名称为 DWH_test,心跳值字段为 thalach,下面SQL语法正确的是?
    A: select * from 'DW_H_test’where 'thalach’>200 or 'thalach’<10
    B: select * from 'DW_H_test’where 'thalach’<=200 or 'thalach’<10
    C: select * from 'DW_H_test’where 'thalach’<200 and 'thalach’>10
    D: select * from 'DW_H_test’where 'thalach’>200 and 'thalach’<10
  • 举一反三