Introducing Batch User Guide Samples

This commit is contained in:
Glenn Renfro
2019-04-19 14:50:48 -04:00
parent ad22ce2c08
commit 6d46829ed6
32 changed files with 2594 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS BILL_STATEMENTS
(
id int,
first_name varchar(50),
last_name varchar(50),
minutes int,
data_usage int,
bill_amount double
);