- 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
您可能关注的文档
最近下载
- GB50147-2010 电气装置安装工程高压电器施工及验收规范.docx
- 课件:经桡动脉脑血管介入的利与弊.ppt
- T∕CSTM 00226-2020 水性柔性无机陶瓷涂料.docx
- 北京交通大学本科生转专业和大类专业分流管理办法.pdf VIP
- 部编版六年级语文上册全课预习单.pdf VIP
- SMP-(H)ZL-06.005-20-01 质量事故处理管理规程.doc VIP
- DB51∕T 5066-2018 四川省居住建筑油烟气集中排放系统应用技术标准.pdf VIP
- AIAG VDA SPC手册 统计过程控制-红皮书 第一版 中文版(无水印清晰版 ).docx VIP
- 力士乐A11VO的资料说明书.ppt VIP
- 高等学校家庭经济困难学生认定申请表.doc
原创力文档

文档评论(0)