我的问题是;如何使用:=
(在 mysql 中赋值)在 delphi 中工作?
这是我的例子:
create TEMPORARY TABLE if not EXISTS new
SELECT date, price, kat, tipe, ready, use,
if(tipe = '0', @x := use, (@x := @x - (ready-use)))as balance,
@result := ready + @x as HSL,
if (@result <=0, ready, ready+@x) as sata... and script complete..
我的问题是;delphi 只能:=
来自 mysql。