Viewing 4 posts - 1 through 4 (of 4 total)
Please check below query.
Note: Please replace table name with your table name in select and update statements.
DECLARE @T1TBL TABLE(ItemNum VARCHAR(50))
INSERT INTO @T1TBL
SELECT...
March 21, 2017 at 12:46 am
Carlo Romagnano (3/2/2016)
When execute below code then error message come, not * (star).
SELECT TRY_CONVERT(VARCHAR(1), 234523)
An error
Msg 195, Level 15, State 10, Line 1
'VARCHAR' is not a recognized built-in function name.
When...
March 2, 2016 at 3:18 am
When execute below code then error message come, not * (star).
SELECT TRY_CONVERT(VARCHAR(1), 234523)
An error
Msg 195, Level 15, State 10, Line 1
'VARCHAR' is not a recognized built-in function name.
When execute below...
March 2, 2016 at 3:08 am
Viewing 4 posts - 1 through 4 (of 4 total)