Mysql
daponi
在生活中苦苦挣扎的一名弱鸡
展开
-
mysql 删除多个关联的表
写法:t1 中的id和t2、t3、t4 中的id相关联, 当删除t1.id="value"该条数据时,同时删除t2、t3、t4对应的数据。注意:t1一定要有数据,t2、t3、t4不一定有数据,t1查不到数据时也不会删其他表的数据。DELETE t1, t2, t3, t4 FROM t1&n...原创 2019-11-09 12:33:25 · 1237 阅读 · 0 评论 -
MySQL的内、外、左、右连接
1.使用关系代数合并数据1.1关系代数合并数据集合的理论基础是关系代数,它是由E.F.Codd于1970年提出的。在关系代数的形式化语言中:用表、或者数据集合表示关系或者实体。用行表示元组。用列表示属性。1.2关系代数包含以下8个关系运算符选取――返回满足指定条件的行。投影――从数据集合中返回指定的列。笛卡尔积――是关系的乘法,它将分别来自两个数据集合中的行以所有可能的方...原创 2019-10-18 11:36:36 · 241 阅读 · 0 评论 -
mysql error1103 Host * is not allowed to connect to this MySQL server解决方法
Windows中Navicat远程连接数据库如果mysql不支持远程连接,会出现提示:错误代码是1130,ERROR 1130: Host * is not allowed to connect to this MySQL server。解决方法如下:localhost改成%进入mysql的BIN目录代码如下 复制代码mysql -u root -pmysql>use mys...原创 2019-09-06 15:05:19 · 2433 阅读 · 0 评论 -
MySQL迁移数据库(mysqldump)
一、导出导入所有数据库的数据1.导出mysqldump -u root -p123456 --all-databases > all.sql2.导入mysql -u root -p123456 < “D:\MySQL 5.5\bin\all.sql”二、导出导入指定数据库的数据1.导出mysqldump -u root -p123456 test > test....原创 2019-09-26 14:01:48 · 355 阅读 · 0 评论 -
MySQL5.7:of SELECT list is not in GROUP BY clause and contains nonaggregated column 'userinfo.
安装了mysql5.7,用group by 查询时抛出如下异常:Expression #3 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'userinfo.t_long.user_name' which is not functionally dependent on columns in ...原创 2019-09-23 15:51:14 · 5028 阅读 · 1 评论