A place where Web Developer can get awesome articles in asp.net, windows phone 7 / 8 application codes. We aimed at providing the maximum help in the Software Development and Design :)
Monday, May 20, 2013
SQL Query to List All Columns alphabetically
select c.name from
sys.columns c
join sys.tables t on c.object_id = t.object_id
where t.name = 'Article'
Order by
c.name
No comments:
Post a Comment