student.sql
来自「一个使用JDBC的简单的用java连接Sybase数据库的例子」· SQL 代码 · 共 30 行
SQL
30 行
/*==============================================================*/
/* 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 + =
减小字号Ctrl + -
显示快捷键?