我正在使用phpbb,我可以使用它。
添加到phpbb_topics
Field: poll_show_votes
Type: TINYINT
Length/Values: 2
Attribute: UNSIGNED
Null: not null
Default: 0
现在我知道如何在我的phpmyadmin中执行此操作,但我不知道如何将其转换为SQL查询。
有人可以解释我将如何做到这一点。
答案 0 :(得分:0)
ALTER table phpbb_topics
ADD poll_show_votes TINYINT(2) UNSIGNED NOT NULL DEFAULT 0