📄 student.sql
字号:
/*==============================================================*/
/* Database name: student */
/* DBMS name: Sybase AS Anywhere 8 */
/* Created on: 2004-12-9 19:41:04 上午 */
/*==============================================================*/
if exists(
select 1 from sys.systable
where table_name='student'
and table_type='BASE'
) then
drop table student
end if;
/*==============================================================*/
/* Table: student */
/*==============================================================*/
create table student
(
ID int not null,
Name char(10),
age tinyint,
sex char(4),
email char(30),
tel char(15),
primary key (ID)
);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -