16 lines
760 B
SQL
Executable File
16 lines
760 B
SQL
Executable File
WHENEVER SQLERROR EXIT SQL.SQLCODE
|
|
|
|
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
|
|
VALUES ('Acme Brazil', 'LATAM', 'alice', 'HIGH', 'BR-111-222', 1250000);
|
|
|
|
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
|
|
VALUES ('Andes Retail', 'LATAM', 'alice', 'MEDIUM', 'CL-333-444', 820000);
|
|
|
|
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
|
|
VALUES ('Northwind US', 'NA', 'natalie', 'HIGH', 'US-555-666', 2200000);
|
|
|
|
INSERT INTO dds_ai_customers (customer_name, region, account_owner, risk_rating, tax_id, annual_revenue)
|
|
VALUES ('Euro Health', 'EMEA', 'erik', 'HIGH', 'DE-777-888', 3100000);
|
|
|
|
COMMIT;
|