каким образом можно узнать состав полей пользовательской таблицы Authors базы данных pubs

  • select * from syscolumns where name='authors'
  • select * from syscolumns where syscolumns.id=(select sysobjects.id from sysobjects where name='authors')
  • select * from syscolumns where sysobjects.id=(select sysobjects.id from syscolumns where name='authors')
  • select * from sysobjects where sysobjects.id=(select syscolumns.id from syscolumns where name='authors')

К сожалению, у нас пока нет статистики ответов на данный вопрос, но мы работаем над этим.