I need to delete data from a dataset. I read this post that I think would help (https://dojo.domo.com/discussion/comment/46624#Comment_46624) but Im not sure where to run this query to delete from the table.
Please let me know if these are the correct steps:
click SQL in DOMO url -> MySQL -> input datasets (add the table I want to delete rows from) -> transform ( add my delete from statement:
DELETE FROM
my_table
where `loaded_date` >= '2019-10-01' and `loaded_date`<= '2019-11-01';)
-> output datasets (just do select * from table? does it matter what I enter here?, can I just limit to 10?)
thanks!