以下是Sybase查询::
select Id, + "|", + substring(Name, 1, 35), + "|", +
substring(convert(datetime,dateadd(ss, Dt,"01/01/1900")),1,20) + " TIME" +
"|" + ISNULL(CrNumber," ")
from AlertMods where ModType = 1
我已将其迁移到oracle :: 我使用了concat和substr。这些是更改替代方案。请告诉我我是否在oracle中使用正确的替代方案。
由于