T-sql subscript only numbers from string, cannot use create procedure, create table, etc
Clash Royale CLAN TAG #URR8PPP T-sql subscript only numbers from string, cannot use create procedure, create table, etc Similar questions have been posted in the past, but I work in a very limited environment. The offered solutions involved using create procedure, create table, etc. None of that is available here. How can I subscript only digits (0-9) that are non-continuous from strings such as '09text10more text!@@#11' to return 091011?. Is it possible with a combination of functions, something like SELECT Funtion1(Function2(StringField)) From Schema.Table?. Data type is varchar(30). Thank you. So, you need to be able to execute this within the context of a single query? – csharplova yesterday Please read this for some tips on improving your question. It's helpful to tag database questions wit...