博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Drupal7 db_query SQL查询运用
阅读量:5986 次
发布时间:2019-06-20

本文共 1452 字,大约阅读时间需要 4 分钟。

hot3.png

你可以使用 fetchField() 来获得单个记录. 例如:

$nid))->fetchField();?>

//查询

$uid));// 返回的结果是一个对象//通过一个foreach来进行输出foreach ($result as $record) {// Perform operations on $record->title, etc. here.// in this example the available data would be mapped to object properties:// $record->nid, $record->title, $record->created}

或者是(推荐方法)

while($record = $result->fetchassoc()){    //写你想要的    //那么输出的就是一个数组}

//对象,数组,值

$uid)); // 对象$record = $result->fetchObject();// 数组$record = $result->fetchAssoc();// 只输出第一条数据$data = $result->fetchColumn(1); // Grabs the title 只输出第一个from the next row// Retrieve all records into an indexed array of stdClass objects.$result->fetchAll();// Retrieve all records as stdObjects into an associative array// keyed by the field in the result specified.// (in this example, the title of the node)$result->fetchAllAssoc(‘title’);// Retrieve a 2-column result set as an associative array of field 1 => field 2.$result->fetchAllKeyed();// Also good to note that you can specify which two fields to use// by specifying the column numbers for each field$result->fetchAllKeyed(0,2); // would be nid => created$result->fetchAllKeyed(1,0); // would be title => nid// Retrieve a 1-column result set as one single array.$result->fetchCol();// Column number can be specified otherwise defaults to first column$result->fetchCol($db_column_number);// Count the number of rows$result->rowCount();?>

 

转载于:https://my.oschina.net/kenblog/blog/191477

你可能感兴趣的文章
360桌面JSAPI一个诡异的bug:客户端与网页通过js通信
查看>>
python+soket实现 TCP 协议的客户/服务端中文(自动回复)聊天程序
查看>>
如何在博客园上面显示自己定义的头像--【sky原创】
查看>>
阿里巴巴开源技术体系
查看>>
实践基于Task的异步模式
查看>>
ASP.NET File Upload with *Real-Time* Progress Bar
查看>>
python使用(三)
查看>>
Visual Studio 2010 起始页中 不显示最近使用的项目问题,解决办法
查看>>
关于字符串反转和数组反转的问题
查看>>
Selenium2(WebDriver)总结(三)---元素定位方法
查看>>
Git异常:fatal: V1.0 cannot be resolved to branch.
查看>>
基于DotNet构件技术的企业级敏捷软件开发平台 - AgileEAS.NET - 对象控制反转
查看>>
Git学习系列之集中式版本控制系统vs分布式版本控制系统
查看>>
加班有罪
查看>>
现代软件工程 第十四章 【质量保障】 练习与讨论
查看>>
VS2008 Debug与Release的本质区别
查看>>
C#读写config配置文件
查看>>
c#的DateTime.Now函数详解
查看>>
PS网页设计教程VIII——在Photoshop中设计不同寻常布局
查看>>
filezilla ftp client在win7 下获取ftp目录信息出错解决方法
查看>>