locked
Sql Table Headers Value RRS feed

  • Question

  • User-1499457942 posted

    Hi

        How we can read Sql Table Header Row Column value using c#

    Thanks

    Wednesday, June 13, 2018 6:34 AM

Answers

  • User632428103 posted

    Hello,

    you need to pass by a query as this : 

    SELECT name FROM sys.columns WHERE object_id = OBJECT_ID('TABLE NAME') 

    copy paste this query inside SSMO and see the result, try with * also for to see which column you have access ...

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Wednesday, June 13, 2018 6:53 AM