Commit 36e73d6c authored by Naren Medarametla's avatar Naren Medarametla

Update readme.md

parent ff6ea4d0
......@@ -40,7 +40,7 @@ In Header click on Tool -> Query Tool --> and paste the below query
CREATE TABLE offer_lookup
(
id INTEGER,
id VARCHAR(500),
store_id VARCHAR(200),
terminal VARCHAR(200),
offer_type VARCHAR(200),
......@@ -61,16 +61,16 @@ Once you create use the below query to insert a data
INSERT INTO public.offer_lookup(
store_id, terminal, offer_type, offer_id, pre_condition, id)
VALUES ('0001','001','Customer',1,'AND',54321);
VALUES ('0001','001','Customer',1,'AND',"54321");
INSERT INTO public.offer_lookup(
store_id, terminal, offer_type, offer_id, pre_condition,id)
VALUES ('0001','001','Customer',2,'AND',54321);
VALUES ('0001','001','Customer',2,'AND',"54321");
INSERT INTO public.offer_lookup(
store_id, terminal, offer_type, offer_id, pre_condition,id)
VALUES ('0001','001','Customer',3,'AND',54321);
VALUES ('0001','001','Customer',3,'AND',"54321");
INSERT INTO public.offer_lookup(
store_id, terminal, offer_type, offer_id, pre_condition,id)
VALUES ('0001','001','Customer',4,'AND',54321);
VALUES ('0001','001','Customer',4,'AND',"54321");
```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment