(..) 아래문장을 사이베이스에 할려면 어떻게 처리를 하는지요?
select to_char(sysdate, 'yyyy-mm') from emp
convert 함수로는 처리가 되지 않는듯 해서요
좀 무식한 방법이지만...
select convert(char(4),datepart(yy, sysdate)) + '-' + convert(char(2),datepart(mm, sysdate)) from emp
1> select convert(char(6),getdate(),112)
2> go
------
200308
1> select convert(char(7),getdate(),111)
-------
2003/08
1> select convert(char(10),getdate(),110)
----------
08-21-2003
하이픈으로 앞에 yyyy가 나오는 건 없네요...
그건 위의 분 것을 쓰세요...^^;
즐프하세염....