사이베이스 timestamp값을 얻는 방법은 무엇인가요?
select convert(timestamp,getdate()) 이렇게 안되네요.
아시는 분 부탁드립니다.
좀더 찾아 볼껄 죄송합니다.
select convert(varchar(30),getdate(),109) 나오네요.
이걸로 그냥 만족하렵니다. 좀더 좋은것 있으면 좋은데...
오라클처럼....
select getdate() 하면 날짜 시 분 까지의 정보는 나옵니다만........ select convert(char(8),getdate(),112)
timestamp 값은 datetime 과는 다른 값입니다. DB 별로 따로 관리가 됩니다. select @@dbts 하시면 해당 DB의 timestamp 값이 검색됩니다. 이값은 DB 작업에 의해 계속 변합니다. insert/update/delete 등과 같은 작업 후에도 변해요