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.
Declare @Temp VarChar(100)
Set @Temp = 'UPPER CASE words only'
Select SubString(@Temp, 1, PatIndex('%[^A-Z ]%', @Temp collate SQL_Latin1_General_CP850_BIN)-1)