RE: replacing carriage-returns in a db field with commas?

2001-08-07 Thread Chris Martinez
It will take three parameters, yes. Sorry, try putting " around the third parameter like this: SELECT YourField FROM YourTable ORDER BY YourPrimaryKey UPDATE YourTable SET (YourField=#NewVal#) I

RE: replacing carriage-returns in a db field with commas?

2001-08-07 Thread David Grabbe
g carriage-returns in a db field with commas? I'm not sure about the first part of your question but the second part goes something like this: SELECT YourField FROM YourTable ORDER BY YourPrimaryKey UPDATE YourTable

RE: replacing carriage-returns in a db field with commas?

2001-08-07 Thread Hinojosa, Robert A
Most SE's will not care about whitespace, and others do not weigh heavily on meta tags anyway. To answer your question though, it is actually recommended that you do not put commas between keywords anyway, simple spaces are recommended. That way you can use different combinations of strings.

RE: replacing carriage-returns in a db field with commas?

2001-08-07 Thread Chris Martinez
I'm not sure about the first part of your question but the second part goes something like this: SELECT YourField FROM YourTable ORDER BY YourPrimaryKey UPDATE YourTable SET (YourField=#NewVal#) T