To Get NULL Value Column Names

  • Hi Friends,

    I have a table consists of around 200 Columns. I would like to find out the NULL Value Columns.

    How do I make it? Please let me know ASAP.

    Thanks In Advance,

    Sandeep IVS

    🙂

  • Hi

    How about:

    select * from INFORMATION_SCHEMA.columns

    where TABLE_NAME = 'T1' and IS_NULLABLE = 'YES'

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

You must be logged in to reply to this topic. Login to reply