Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)

  • RE: SQL Query Help

    Mark,

    Thank you. This worked. Thanks for the link. I will surely read it.

  • RE: SQL Query Help

    Hi Steve,

    I was in such a hurry that i clicked post instead of preview. I realized later. I am sorry for that.

  • RE: Ranking

    Thanks you both. Adi's suggestion worked for me.

  • RE: Changing the Data Type

    Thanks, you were right. Different column had different collation.

    I used alter statement for each of the column and it worked.

    "ALTER TABLE Table_Name ALTER COLUMN Column_Name COLLATE SQL_Latin1_General_CP1_CI_AS"

  • RE: How to remove space

    Perfect!! It worked. Thanks o much, GSquared.

  • RE: How to remove space

    I used your script for the table below:

    create table test

    (col1 varchar(30),

    col2 varchar(30),

    col3 varchar(30))

    insert into test (col1, col2, col3)

    values('hi there', '111', '')

    insert into test (col1, col2, col3)

    values('', '', 'Hello')

    insert...

  • RE: Sql Query Help

    sorry,this was suppose be my new topic. Ignor this added a new topic: How to remove space.

  • RE: Sql Query Help

    I am working on SQL 2005

    I need to store values from different fields in a new field. No need to take the column if no value. Something like this:

    col1 ...

  • RE: Sql Query Help

    Thank you for your suggestions.

Viewing 9 posts - 1 through 9 (of 9 total)