0
似乎無法使下面的語句工作,有什麼建議嗎?MYSQL; IF then SET語句
Set @input := '1234567';
if length(@input)= 7 then SET [email protected]; end if;
由於提前,
劉若英
似乎無法使下面的語句工作,有什麼建議嗎?MYSQL; IF then SET語句
Set @input := '1234567';
if length(@input)= 7 then SET [email protected]; end if;
由於提前,
劉若英
試試這個:
Set @input := '1234567';
SELECT IF(length(@input)=7, @input, '((something here))') AS id;
很好,問題解決了。 – user2081876 2013-02-18 04:12:51
什麼'id'的數據類型? – 2013-02-18 03:43:05