Answers for "create a date in mysql"

SQL
0

how to declare variable date in mysql

set @report_date = '2013-01-17 00:00:00';

SELECT  *
  FROM `NMPP`.`capacitypersecond` 
  WHERE `StreamDT` >= @report_date and `StreamDT` < '2013-01-18 00:00:00'  ;
Posted by: Guest on August-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language