📄 source.txt
字号:
create table student(name string primary key ,
class string not null unique,
sex bit not null ,
age int not null ,
foreign key(class) references team(class ) ) ;
insert into student ( name , class) values ( 'wang' , '0522' ) ;
select age+3*8+avg(age) , class , count(*) from student where age<18 and sex=0 ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -