Tagged Questions
1
vote
1answer
80 views
How to prepare a date and double for a mysql replace statement?
I have a MySql table with three columns:
CU VARCHAR(3)
DA DATETIME
VA DOUBLE
I need to execute several REPLACE into mytable (CU, DA, VA) values("ABC", mydate, myval) statements from Java. mydate is ...