// 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
答案 0 :(得分:0)
UPDATE table_name
SET Flag = 'N'
WHERE END_DATE < #9999-01-31#;
确保您的END_DATE
列设置为日期而非字符串