Rent_Num bigint(8) 租用信息编号,不允许空值,自动增长,种子1 Rent_carid int(4) 车辆编号,不允许空值 Rent_Custid nchar(10) 客户编号,不允许空值 Rent_date datetime(8) 租车时间,不允许空值 Expired_date datetime(8) 还车时间,不允许空值 Rent_days datetime(8) 租用天数 Earnest_money money(8) 租车费用,不允许空值,sqlserver建表rent的sql语句请给出
时间: 2024-02-24 18:53:38 浏览: 125
以下是在 SQL Server 中创建 Rent 表的 SQL 语句:
```sql
CREATE TABLE Rent (
Rent_Num bigint IDENTITY(1,1) NOT NULL,
Rent_carid int NOT NULL,
Rent_Custid nchar(10) NOT NULL,
Rent_date datetime NOT NULL,
Expired_date datetime NOT NULL,
Rent_days int NOT NULL,
Earnest_money money NOT NULL,
PRIMARY KEY (Rent_Num)
);
```
在这个表中,我们创建了 7 个列,分别是 Rent_Num、Rent_carid、Rent_Custid、Rent_date、Expired_date、Rent_days 和 Earnest_money,它们的数据类型和约束如下:
- Rent_Num:bigint 类型,代表租用信息编号,不允许空值,使用 IDENTITY(1,1) 自动增长,种子为 1。
- Rent_carid:int 类型,代表车辆编号,不允许空值。
- Rent_Custid:nchar(10) 类型,代表客户编号,不允许空值。
- Rent_date:datetime 类型,代表租车时间,不允许空值。
- Expired_date:datetime 类型,代表还车时间,不允许空值。
- Rent_days:int 类型,代表租用天数,不允许空值。
- Earnest_money:money 类型,代表租车费用,不允许空值。
我们使用 Rent_Num 列作为主键,确保每个租用信息都是唯一的。
阅读全文