- CREATE TABLE [dbo].[uTstTable] ([col1] NVARCHAR(20),[col2] NVARCHAR(20),[col3] NVARCHAR(20),[col4] NVARCHAR(20),[col5] NVARCHAR(20),[col6] NVARCHAR(20),[col7] NVARCHAR(20))
- GO
-
- INSERT INTO [dbo].[uTstTable] ([col1],[col2],[col3],[col4],[col5],[col6],[col7])
- VALUES ('0.65','000435','SF46DG','3800','$54KQ','-0034','-855.4')
- GO
-
-
- SELECT [dbo].[svf_IsPositiveInteger] ([col1]) AS [col1],
- [dbo].[svf_IsPositiveInteger] ([col2]) AS [col2],
- [dbo].[svf_IsPositiveInteger] ([col3]) AS [col3],
- [dbo].[svf_IsPositiveInteger] ([col4]) AS [col4],
- [dbo].[svf_IsPositiveInteger] ([col5]) AS [col5],
- [dbo].[svf_IsPositiveInteger] ([col6]) AS [col6],
- [dbo].[svf_IsPositiveInteger] ([col7]) AS [col7]
- FROM [dbo].[uTstTable]
- GO