Viewing 15 posts - 76 through 90 (of 2,452 total)
November 17, 2017 at 9:34 am
rosarozina - Tuesday, November 14, 2017 4:24 PMThank you for the tip.
I will post it using the guide
look forward to it....
November 15, 2017 at 10:56 am
maybe a set up script that creates the tables and inserts some simple sample data and also the expected results would help......you have had many views and only one reply.
November 14, 2017 at 8:18 am
September 3, 2017 at 1:36 pm
September 3, 2017 at 1:07 pm
maybe...
DECLARE @name VARCHAR(50)= 'baggins/bilbo';
SELECT LEFT(@Name, CHARINDEX('/', @Name)-1) AS Lastname,
SUBSTRING(@Name, CHARINDEX('/', @Name)+1, LEN(@Name)-CHARINDEX('/', @Name)) AS Firstname;
September 3, 2017 at 12:12 pm
maybe....
DECLARE @s VARCHAR(100)= 'rh@ythm@#%';
SELECT SUBSTRING(@s,1, LEN(@s)-(PATINDEX('%[A-Za-z]%', REVERSE(@s))-1))
September 3, 2017 at 8:46 am
you have posted in sql 2008 forum...please confirm this is the version you are using.
August 27, 2017 at 6:46 am
August 22, 2017 at 6:45 am
August 14, 2017 at 12:34 pm
not sure about your question ...sorry.
try re posting using these guidelines
https://spaghettidba.com/2015/04/24/how-to-post-a-t-sql-question-on-a-public-forum/
August 12, 2017 at 11:48 am
can you give some sample set up data that explains this and your expected...
August 11, 2017 at 8:56 am
my users have created various groupings of cities within provinces/states. The rule is that all cities must be covered by some combination of these groups
can you give...
August 11, 2017 at 8:33 am
Viewing 15 posts - 76 through 90 (of 2,452 total)