Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have data coming from the database which has got both Live services and Test service.
How Can I stop the data coming onto the Table.
This is the code I have been using but still showing the Test data.
services:
LOAD id AS service_id,
name AS service_name,
SQL SELECT id,
name
FROM "myhealth_production"."public".services;
Any help pls.
LOAD id AS service_id,
name AS service_name,
SQL SELECT id,
name
FROM "myhealth_production"."public".services
WHERE name not like '%test%';
???
u can try with simply if expression,if ur fieldname='testservice',null(),fieldname;
LOAD id AS service_id,
name AS service_name,
SQL SELECT id,
name
FROM "myhealth_production"."public".services
WHERE name not like '%test%';
???
nope it is still getting Test.
Is it coming in elsewhere in your data model then?
Thanks Adam.
It worked now.
much appreiciated.
Excellent, glad you are sorted