blob: b3c85b369ec39fe61a3461d943ad73a3e6f36ac3 (
plain)
1
2
3
4
5
6
7
|
use [@initial.catalog@];
GO
INSERT INTO LeaseType(LeaseTypeName, StandardRateAmount) VALUES('Daily', 25.50)
INSERT INTO LeaseType(LeaseTypeName, StandardRateAmount) VALUES('Weekly', 145.50)
INSERT INTO LeaseType(LeaseTypeName, StandardRateAmount) VALUES('Monthly', 500.00)
INSERT INTO LeaseType(LeaseTypeName, StandardRateAmount) VALUES('Yearly', 5000.00)
GO
|