求教mysql中if exists 的用法

求教mysql中if exists 的用法,第1张

MYSQL中不支持这种语法。

SELECT au_lname, au_fname

FROM authors

WHERE exists

(SELECT

FROM publishers

WHERE authorscity = publisherscity)

返回结果里包含有无。

<php

header('Content-type:text/html;charset=utf-8');

$db = new mysqli('localhost','test','test','books');

$sql = "select product_sn from data_ct_product_borrow where product_sn='$str_str[2]'";

$rows = $db->query($sql);

if($rows->num_rows>0)

{

echo '有';

} else

{

echo '无';

}

>

看你语句里面的IF函数例子:IF(ggive_integral>-1,ggive_integral,cgoods_price)这个函数的结果要根据ggive_integral的值,如果ggive_integral大于-1函数值就是ggive_integral,否则函数值就是cgoods_price。

以上就是关于求教mysql中if exists 的用法全部的内容,包括:求教mysql中if exists 的用法、php,mysql的if exists问题、mysql中if条件与leftjoin怎么连用等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9849339.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存