如何在我的表中汇总价格行 这是我的代码。
$sql=mysql_query("SELECT sum(Price) * FROM reservations as A
inner join service as B on A.Res_ser_ID = B.Ser_ID
inner join personel as C on A.Res_per_ID = C.Per_ID
where Res_cus_ID = '$userID' ");
答案 0 :(得分:1)
您需要升级到支持的软件,例如mysqli_
。 PHP的mysql_ API多年来一直没有得到支持。然后,您可以使用参数 - 从应用程序安全有效地使用SQL的关键。
我认为这样的事情(不使用参数):
SELECT sum(s.Price) as sum_price
FROM reservations r JOIN
service s
ON r.Res_ser_ID = s.Ser_ID
WHERE r.Res_cus_ID = '$userID';
这假设价格来自service
表。
答案 1 :(得分:0)
<Target Name="Build">
<PropertyGroup>
<TheFile>C:\Windows\System32\notepad.exe</TheFile>
<FileContents Condition="Exists($(TheFile))">$([System.IO.File]::ReadAllText('C:\\Windows\System32\notepad.exe'))</FileContents>
</PropertyGroup>
<Message Condition="'$(FileContents)' != ''" Text="The file is not empty $(FileContents)" />
</Target>
这应该有效,我假设价格在桌面服务中。