Files
Rodrigo db3d68af10
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled
Improve Deep Data Security lab scenarios
2026-05-13 16:13:04 -03:00

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;