Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在与 phpbb 合作,我有这个。
添加到 phpbb_topics
Field: poll_show_votes Type: TINYINT Length/Values: 2 Attribute: UNSIGNED Null: not null Default: 0
现在我知道如何在我的 phpmyadmin 中执行此操作,但我不知道如何将其转换为 SQL 查询。
有人可以解释一下我会怎么做。
ALTER table phpbb_topics ADD poll_show_votes TINYINT(2) UNSIGNED NOT NULL DEFAULT 0