摘要: http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串。 写法格式:http_build_query ( mixed $query_data [, string $numeric_prefix [, string $arg_sep 阅读全文
posted @ 2017-08-23 11:43 yolo_bean 阅读(153) 评论(0) 推荐(0)
摘要: 下面是两张表 表stu 表tech 1.右连接 当使用右连接语句查询时,返回结果如下: 从结果中可以看出,tech表中被查询的字段会被全部显示出来,而stu表中,只有与表tech的classe_name相同的条目的相应字段才会被显示出来。 右连接即:返回右边表中所有被查询字段+左边表中符合条件的字段 阅读全文
posted @ 2017-08-23 10:52 yolo_bean 阅读(170) 评论(0) 推荐(0)