如何在 MyEclipse Derby 中创建表
我可以在使用 MyEclipse Derby 制作 Hibernate 示例程序时制作表格
where i can make the table when making sample program of Hibernate with MyEclipse Derby
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 MyEclipse Derby 数据库服务器教程(我强烈建议完整阅读它):
From the MyEclipse Derby Database Server Tutorial (and I warmly recommend reading it entirely):
请按照以下步骤操作:
1.要在
MyEclipse Derby
中创建表,首先选择右上角MyEclipse IDE
中的打开透视图,如下图所示:MyEclipse Derby
并单击打开连接
点击 Connected to MyEclipse Derby [classiccars]
并点击New SQL Editor
,如下图所示:CREATE TABLE APP.EMPINFO
(EMP_ID INT NOT NULL、名字 VARCHAR(20)、中间名 VARCHAR(20)、姓氏 VARCHAR(20)、
DATEOFBIRTH 日期不为空、电子邮件 VARCHAR(50)、附件 VARCHAR(5000)、PHONENO 整数、
ADDRESS VARCHAR(256), PINCODE 整数, CONSTRAINT EMPID_PK PRIMARY KEY (EMP_ID));
这里
APP
是架构名称,EMPINFO
是表名称。新 SQL 编辑器中显示了如何在 MyEclipse Derby 中创建表:
Follow the steps below:
1.For creating table in
MyEclipse Derby
first of all select open perspective inMyEclipse IDE
at top right corner, image shown below:MyEclipse Derby
and clickOpen connection
click on Connected to MyEclipse Derby [classiccars]
and click onNew SQL Editor
, image shown below:CREATE TABLE APP.EMPINFO
(EMP_ID INT NOT NULL, FIRSTNAME VARCHAR(20), MIDDLENAME VARCHAR(20), LASTNAME VARCHAR(20),
DATEOFBIRTH DATE NOT NULL, EMAIL VARCHAR(50), ATTACHMENT VARCHAR(5000), PHONENO integer,
ADDRESS VARCHAR(256), PINCODE integer, CONSTRAINT EMPID_PK PRIMARY KEY (EMP_ID));
Here
APP
is schema name andEMPINFO
is table name.How to create table in MyEclipse Derby is shown in New SQL Editor: