如何基于SQL中的另一个列值设置列值

时间:2018-02-16 17:29:48

标签: sql hive hiveql

// Example program
#include <iostream>
#include <vector>

using namespace std;


typedef std::vector<int> vector1Int;

static vector1Int hello;

void create(){
    hello = vector1Int(8,12);
}

int main()
{

  create();

  return 0;
}

大家好,

上表列中包含样本数据。我想根据日期设置标志值。

例如end_date值小于31-01-9999我应该设置标志值'N'。有什么建议?

感谢 Hareesh

1 个答案:

答案 0 :(得分:0)

UPDATE table_name
SET Flag = 'N'
WHERE END_DATE < #9999-01-31#;

确保您的END_DATE列设置为日期而非字符串