📄 pollsetup.sql
字号:
create database poll;use poll;create table poll_results ( candidate varchar(30), num_votes int);insert into poll_results values ('John Smith', 0), ('Mary Jones', 0), ('Fred Bloggs', 0); grant all privilegeson poll.* to poll@localhost identified by 'poll';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -