Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table #Temp(Name_Char Char(20), Name_VarChar VarChar(20), Name_Text Text)
Insert Into #Temp Values('George', 'George', 'George')
Select Name_Char,
len(Name_Char) As Length_Char,
DataLength(Name_Char) As DataLength_Char,
len(Name_VarChar) As Len_VarChar,
DataLength(Name_VarChar) As DataLength_VarChar,
DataLength(Name_Text) As DataLength_Text
From #Temp
drop table #Temp