天天看點

SQLSERVER資料類型轉換

sql資料類型轉換(Cast()和Convert())函數

這兩種轉換可以使用在任何可以使用表達式的地方

use pubs

select cast(title as char(50)) from titles

或者

select convert(char(50),title) from titles