php查询数据库的字段名 php查询sqlserver数据库( 二 )


1
2
3
4
$map['id']= array('eq',100);id = 100;
$map['id']= array('egt',100);id = 100
$map['name'] = array('like','thinkphp%'); name like 'thinkphp%' 模糊查询
$map['a'] =array('like',array('%thinkphp%','%tp'),'OR');$map['b'] =array('notlike',array('%thinkphp%','%tp'),'AND'); (a like '%thinkphp%' OR a like '%tp') AND (b not like '%thinkphp%' AND b not like '%tp')
本文来自ThinkPHP框架技术文章栏目:

PHP中怎样获取字段的名称?$con = mysql_connect('localhost','root','');
if($con){
mysql_query('use yatibang');
mysql_query('set names utf8');
}else{
echo "数据连接失败";
}
$sql = "desc app_category";
$res = mysql_query($sql);
$row = $rows = array();
while( $row = mysql_fetch_assoc($res)){
$rows[] = $row['Field'];
}
var_dump($rows);
返回结果如下:
php查询数据库所有字段并显示.亲 , 你的想法有问题,这是不符合要求的 。
数据库中有很多的表,表中有字段 。因此你不可能查询数据库中的id和news , 而是只能在特定的表上查询 。同时sql语法也要求
select
fields
from
table_name而不是db_name哦 。
举例来说,保存新闻的表名字是news,
位于数据库
my_test_db中,那么应该
$con = mysql_connect("127.0.0.1", "123", "123");
mysql_select_db('my_test_db', $con);
$sql = "select id, news from news";后面的代码就一样了
【php查询数据库的字段名 php查询sqlserver数据库】php查询数据库的字段名的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于php查询sqlserver数据库、php查询数据库的字段名的信息别忘了在本站进行查找喔 。

推荐阅读