(no subject)
May. 26th, 2007 05:08 pmSQL tip: Convert datetime to different styles.
Scroll past the grey-box function stuff at the top.
Also, I did a tech tip earlier on exporting a file list to .txt in DOS. To append to that list, rather than make a new one each time:
The second '>' means append, rather than recreate.
Scroll past the grey-box function stuff at the top.
Also, I did a tech tip earlier on exporting a file list to .txt in DOS. To append to that list, rather than make a new one each time:
dir /b >> list.txt
The second '>' means append, rather than recreate.