create table wwPollQuestions ( — опросные вопросы
 Code smallint not null primary key, — код вопроса
 Question varchar(250) not null, — текст вопроса
 BeginDate smalldatetime not null, — дата начала
 StopDate smalldatetime null, — дата окончания
 Cookie varchar(50) null,  — имя Cookies вопроса
 MultiAnswer bit not null  — возможность множественного ответа
)
create table wwPollAnswers (  — ответы на вопрос
 QuestionCode smallint not null, — код вопроса
 AnswerCode tinyint not null, — код ответа
 Answer varchar(100) not null, — текст ответа
 Counter smallint not null,  — счетчик ответов
 Checked bit not null,  — начальное значение ответа (выбран/не выбран)
 constraint primary key (QuestionCode,AnswerCode)
)