Microsoft
Software
Hardware
Network
Question : Split data from one column into 2 columns
I have a filed called month_year with sample data of 004/2009. I want to make this into two fields called month and year with data being 004 and 2009 respectively. The data format is consistent throughout.
Answer : Split data from one column into 2 columns
update yourtable
set [month]=substring(month_ye
ar,1,3) ,[year]=substr(month_year,
5,4)
where month_year like '___/____'
Random Solutions
I need videos on WPF
Validation of viewstate MAC failed? How I fix it?
Script to enable folder auditing
Parse autosys jil file using Unix tools
ShellExecute SW_HIDE
How do web hosting providers keep public ip addresses live when one ISP fails
Terminal Services lock down question
MS Access SQL Divide by Zero workaround needed
How do i download my dreamweaver site to a different computer than the one I uploaded it on?
how to delete partial contents of a cell?