Microsoft
Software
Hardware
Network
Question : SQL: Pull name from substring .
I am looking to pull out name from a substring, have tried a couple idea's but getting held up on the first name:
Displayed as: Doe, Joseph Moe (Joseph)
Result: Joseph Doe
Any help that can be provided would be much appreciated!
Answer : SQL: Pull name from substring .
SELECT OriginalName, LEFT(OriginalName, CHARINDEX(',', OriginalName) - 1) + ' ' +
SUBSTRING(OriginalName, CHARINDEX('(', OriginalName) + 1, CHARINDEX(')', OriginalName) - CHARINDEX('(', OriginalName) - 1) AS Redone
FROM SomeTable
Random Solutions
Excel spreadsheet graph
checking what is TRANSACTION ISOLATION LEVEL right now
greater then formula issue
Perl, Using Text::CSV_XS / Count number of references
DNS Event ID's 4010 & 4013
New ESXi install fails (PSOD)
Sysprepping Windows 7 PCs
jucheck.exe in Windows 7 with Active Directory
Special Query in Oracle 10 sqlplus
MySQL data need to "replace" CRLF