- 16
- 0
- 约1.22万字
- 约 16页
- 2017-06-10 发布于河南
- 举报
postgresql.txt(国外英文资料)
postgresql.txt(国外英文资料)
The definition of a table:
For any relational database, tables are the most core and fundamental object unit of data storage. Lets start here.
Create a table:
The CREATE TABLE products (
Product_no integer,
The name text,
Price numeric
);
Delete table:
DROP TABLE products;
Create a table with default values:
The CREATE TABLE products (
Product_no integer,
The name text,
Price numeric DEFAULT 9.99 -- DEFAULT is the keyword, and then 9.99 is the DEFAULT value for field price.
);
The CREATE TABLE products (
Product_no SERIAL, - the field of SERIAL type indicates that the fi
您可能关注的文档
最近下载
- 发电机的安全运行极限与PQ曲线.ppt VIP
- 《海上风电工程施工监理规范》编制说明.pdf VIP
- 早产儿系统化管理,早、中、后期管理及出院后随访.pptx VIP
- 医疗设备售后服务方案.pdf
- DLT 5210.4-2018 电力建设施工质量验收规程 第4部分:热工仪表及控制装置.docx
- 2025广东粤电惠新热电有限公司招聘15人笔试历年典型考点题库附带答案详解.docx VIP
- 2025年下半年幼儿保教知识与能力真题及答案.docx VIP
- 高中物理公式大全(推荐).pdf VIP
- 浙教版数学七年级上册全册优质课件.pptx VIP
- 四川天钧动力电池包精密结构件生产线设备数控化升级改造项目环境影响报告表.doc VIP
原创力文档

文档评论(0)