0
我想知道oracle中的'InitCap'與mssql是什麼等同於創建'dbo.initcap()'之類的附加函數。任何人都可以幫助我如何使用函數。在mssql中相當於initcap
我想知道oracle中的'InitCap'與mssql是什麼等同於創建'dbo.initcap()'之類的附加函數。任何人都可以幫助我如何使用函數。在mssql中相當於initcap
你可以嘗試的東西像
concat(ucase(substr(yourstring, 1,1)), substr(yourstring, 2))
可能重複:[?如何更新數據爲大寫與T-SQL命令第一號](http://stackoverflow.com/questions/11688182/如何對更新數據-AS-大寫-第一字母與 - T-SQL命令) – Pred 2014-09-24 09:16:27