visual studio 2010 - Get Filtered numeric data from alphanumeric field in binding Source control in winform application -


i have binding source control, binded table named customer. there column named "customerno", in table contains alphanumeric data. want apply filter on binding source shows rows has numeric values in "customerno" , value must in range 13 20.

for example if have following data in customerno column.

10 11 12 13 14 as55 as66 as77 15 

so should give me following result.(as filter range 13-20 , need numerice values)

14 15 

mean while want apply filter on numeric values of alphanumeric column.

kindly me resolve problem.

select customerno (     select customerno   customers isnumeric(customerno )=1 ) c c.customerno between 13 , 20 

use query or create view , use it


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -