I have a mssql
query which i want to convert it into mySql
, after converting still the query is not working.
here is my mssql
query(original)
SELECT
product_id,
NOW() AS `current_date`,
`bt`.`date_from` AS `starts_on`,
`bt`.`date_end` AS `ends_on`,
IF(`bt`.`end` >= NOW(),
DATEDIFF(`bt`.`date_end`, NOW()), #show days until event ends
0 #the event has already passed
) AS `days_remaining`
FROM `bookings` AS `bt`
here is my converted query (converted here:http://www.sqlines.com/online) :
SELECT
product_id,
NOW() AS `current_date`,
`bt`.`date_from` AS `starts_on`,
`bt`.`date_end` AS `ends_on`,
CASE WHEN(`bt`.`end` >= NOW() THEN
DATEDIFF(`bt`.`date_end`, NOW()) ELSE #show days until event ends
0 #the event has already passed
) AS `days_remaining`
FROM `bookings` AS `bt`
but this convertd query gives the following error
Static analysis:
27 errors were found during analysis.
An expression was expected. (near "CASE" at position 154)
Unrecognized keyword. (near "CASE" at position 154)
Unrecognized keyword. (near "WHEN" at position 159)
Unexpected token. (near "(" at position 163)
Unexpected token. (near "`tn`" at position 164)
Unexpected token. (near "." at position 168)
Unexpected token. (near "`end`" at position 169)
Unexpected token. (near ">=" at position 175)
Unrecognized keyword. (near "NOW" at position 178)
Unexpected token. (near "(" at position 181)
Unexpected token. (near ")" at position 182)
Unrecognized keyword. (near "THEN" at position 184)
Unrecognized keyword. (near "DATEDIFF" at position 204)
Unexpected token. (near "(" at position 212)
Unexpected token. (near "`bt`" at position 213)
Unexpected token. (near "." at position 217)
Unexpected token. (near "`date_end`" at position 218)
Unexpected token. (near "," at position 228)
Unrecognized keyword. (near "NOW" at position 230)
Unexpected token. (near "(" at position 233)
Unexpected token. (near ")" at position 234)
Unexpected token. (near ")" at position 235)
Unrecognized keyword. (near "ELSE" at position 237)
Unexpected token. (near "0" at position 256)
Unexpected token. (near ")" at position 266)
Unrecognized keyword. (near "AS" at position 268)
Unexpected token. (near "`days_remaining`" at position 271)
SQL query: Documentation
SELECT product_id, NOW() AS `current_date`, `bt`.`date_from` AS `starts_on`, `bt`.`date_end` AS `ends_on`, CASE WHEN(`tn`.`end` >= NOW() THEN DATEDIFF(`bt`.`date_end`, NOW()) ELSE 0 ) AS `days_remaining` FROM `bookings` AS `bt` LIMIT 0, 25
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'THEN
DATEDIFF(`bt`.`date_end`, NOW()) ELSE 0 ' at line 6
here is my booking table structure
please see Edit/Update 1
UPDATE 1: why this code is working http://sqlfiddle.com/#!9/acf65/2 why it is giving error in phpMyadmin
Question: phpMyadmin version
is 10.1.13-MariaDB
but when i execute this (http://sqlfiddle.com/#!9/4a543/1) query of mysql 5.6
it will not work why?
thank you very much!!!
答案 0 :(得分:1)
我看到两个语法错误:
when
之后,您打开一个在CASE
语句中无效的括号。您在AS
之前关闭括号,因此您也应该从那里删除它。 case
语句以end
结尾,但您没有。把它放在as
示例:
CASE option
WHEN condition THEN statement
[ELSE] statement
END
此外,您的第一个查询似乎是有效的MySQL
查询。你为什么不用那个?
答案 1 :(得分:0)
而不是Case使用IF条件,在错误日志中查看你的两个查询你有'tn'这意味着你运行错误的查询,检查这个
SELECT product_id, NOW() AS current_date,
bt.date_from AS starts_on,
bt.date_end AS ends_on,
IF(tn.end >= NOW(),DATEDIFF(bt.date_end, NOW()),0) AS days_remaining
FROM bookings AS bt;
答案 2 :(得分:0)
我刚刚将Solution
升级到phpMyadmin
,我找到了Server version: 10.1.13-MariaDB
。如果您遇到类似问题,请升级phpMyadmin
。
现在我可以执行原始查询
SELECT
product_id,
NOW() AS `current_date`,
`bt`.`date_from` AS `starts_on`,
`bt`.`date_end` AS `ends_on`,
IF(`bt`.`end` >= NOW(),
DATEDIFF(`bt`.`date_end`, NOW()), #show days until event ends
0 #the event has already passed
) AS `days_remaining`
FROM `bookings` AS `bt`