⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 schema.sql

📁 有关JDBC的使用一些编程实例,有关与数据库连接的代码
💻 SQL
字号:
## create a simple cardfile file# just in case it already exists, drop the table. If it doesn't# exist, this will produce an error...#drop table cardfile\gcreate table cardfile   (name    char(20),    address char(35),    city    char(20),    state   char(2),    zip     char(11),    country char(25),    phone   char(20),    id      int) \g   CREATE UNIQUE INDEX ix_id ON cardfile (id)\g

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -