Hi,
I have a table of the following structure
tblFileNames (FileID int, FileName nvarchar(255))
FileName may contain file path information (Like X:\Xdir\myfile.doc or
X:\Xdir\myfile.document.jpeg etc.)
I need to write a Select statement that would return
FileID FileName File Extension.
--------------- ---------------------------------------
---------------
1 X:\Xdir\myfile.doc doc
2 X:\Xdir\myfile.document.jpeg jpeg
Any suggestion?