I have a column where the rows are set like this
healthy eating habits
healthy working conditions
healthy snacks delicious
I need to extract the middle words only (eating,working,snacks)
I'm not sure how to put the syntax together, so far what I have is
SELECTSUBSTRING([Column3],CHARINDEX(' ', [Column3]),LEN([Column3])- CHARINDEX(' ', [Column3]))
can you please help? thanks