//在main.js中引入import com from'./package/index'Vue.prototype.$public=com.publicFunc
Vue.use(com)//在vue模块使用<template><div id="app"><ComButton></ComButton></div></template><script>exportdefault{mounted(){console.log(this.$public.func1());}}</script>
全字段排序
假设这个表的部分定义是这样的:
CREATE TABLE t (id int(11) NOT NULL,city varchar(16) NOT NULL,name varchar(16) NOT NULL,age int(11) NOT NULL,addr varchar(128) DEFAULT NULL,PRIMARY KEY (id),KEY city (city)
) ENGINEInnoDB;
有如下 SQL 语…
sql基本操作
基本查询语句 union
(必须得是前面的列与后面的列相同才可以查询)
看第二局uses表中的列有3列,而emails中的列只有两列,所有无法成功查询 这就相当于我们再加了一列 group by (分组) 相当于将其分为10列…