建立连接
$link_id=mysql_connect("localhost","数据库管理员名","密码")
mysql_select_db("数据库管理员名_db")
关闭连接
mysql_close($link_id)
需要将结果合并到一起显示出来,这个时候
就需要用到union和union all关键字来实现这样的功能,union和union all的主要区别是union all是把结果集直接合并在一起,而
union 是将union all后的结果进行一次distinct,去除重复的记录后的结果。
select case stf.stationType when 'RAIN' then '雨情站' when 'RECIMEI' then '水位站' else '流量站' end tationName from radar_stations_info stf欢迎分享,转载请注明来源:内存溢出
评论列表(0条)