No data found when using a view
-
Hello,
I have created a view in MySQL but when I’m going on “Data explorer” tab there is “No data found” for this view.
Here is the sql code to create my view :
CREATE OR REPLACE VIEW myview AS SELECT a.field1 AS "Field 1", CONCAT(a.field2, " / ", a.field3) AS "Field 2 / Field 3", REPLACE(FORMAT(b.price, 4, "de_DE"),"."," ") AS "Price", FROM tablea a, tableb b WHERE a.id = b.id
If I delete REPLACE and FORMAT I can see the data in the “Data explorer” tab. But the price is not formated as I need. And in the “Data Publisher” tab I can’t see advanced settings, when I click on the box nothing appears bellow.
I don’t know how I can correct this, do you have any idea?
Thanks for your help.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘No data found when using a view’ is closed to new replies.