- 15
- 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
您可能关注的文档
最近下载
- 黄金交易从业考试题库(精选4篇).doc VIP
- 回收空压机余热解决矿区洗浴用热的技术方案.pptx VIP
- 2026年安徽商贸职业技术学院单招职业适应性考试题库及答案详解一套.docx VIP
- 离心风机说明书 .doc VIP
- 2026年安徽商贸职业技术学院单招职业适应性考试题库带答案详解.docx VIP
- 《重金属环境安全隐患排查评估整治技术指南(试行)》.docx VIP
- 2025年度党员干部个人对照“六个对照”查摆问题清单(学习贯彻党的创新理论、加强党性锤炼、联系服务职工群众、发挥先锋模范作用、改作风树新风、推动铸牢中华民族共同体意识六个方面).docx VIP
- “语用否定”考察.pdf VIP
- HPM视角下初中数学章节起始课的教学设计研究.pdf VIP
- 2026年安徽商贸职业技术学院单招职业适应性考试题库及参考答案详解1套.docx VIP
原创力文档

文档评论(0)