错误代码: 1066 Not unique table/alias: 'c'

1、错误描述

1 queries executed, 0 success, 1 errors, 0 warnings

查询:SELECT (SELECT CONCAT( s.name, ‘/‘, sr.reame, ‘[‘, DATE_FORMAT(a.startTime, ‘%Y-%m-%d‘), ‘]‘ ) FROM t_stu_info a, t_...

错误代码: 1066
Not unique table/alias: ‘c‘

执行耗时   : 0 sec
传送时间   : 0 sec
总耗时      : 0.001 sec

2、错误原因

在拼接SQL语句时,给t_stu_amount 和t_tea_info 取别名时,都取c

... from t_stu_info a,t_stu_amount c,t_tea_info c

导致数据库表别名重复

3、解决办法

将两个表的别名改为不一样的,如 ... from t_stu_info a,t_stu_amount c,t_tea_info o

版权声明:本文为博主原创文章,未经博主允许不得转载。

错误代码: 1066 Not unique table/alias: 'c'

时间: 2024-12-29 04:31:54

错误代码: 1066 Not unique table/alias: 'c'的相关文章

错误代码 1066 Not unique table/alias 'c'

1.错误描述 1 queries executed, 0 success, 1 errors, 0 warnings 查询:SELECT (SELECT CONCAT( s.name, '/', sr.reame, '[', DATE_FORMAT(a.startTime, '%Y-%m-%d'), ']' ) FROM t_stu_info a, t_... 错误代码: 1066 Not unique table/alias: 'c' 执行耗时 : 0 sec 传送时间 : 0 sec 总耗时

错误代码: 1109 Unknown table 'ename' in MULTI DELETE

1.错误描述 1 queries executed, 0 success, 1 errors, 0 warnings 查询:delete a.ename from emp 错误代码: 1109 Unknown table 'ename' in MULTI DELETE 执行耗时 : 0 sec 传送时间 : 0 sec 总耗时 : 0 sec 2.错误原因 删除数据库表中的记录,直接删除字段 DELETE a.ename FROM emp; 这样不符合SQL语句语法 3.解决办法 删除数据库表中

msyql同步的时候报错 : 错误代码: 1293 Incorrect table definition;there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause

场景,两个不同服务器上的数据库,进行数据库同步 但是执行之后,提示报错 错误代码: 1293 Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause 原因: 两台服务器的mysql版本不一致. 低版本不支持在一个表里面 有2个TIMESTAMP 类型  的列. 我们使用 SELECT VERSION();  来查

MYSQL ERROR

mysql出错了以前往往靠猜.有了这张表一查就出来了.方便不少.特共享于众 1005创建表失败 1006创建数据库失败 1007数据库已存在创建数据库失败 1008数据库不存在删除数据库失败 1009不能删除数据库文件导致删除数据库失败 1010不能删除数据目录导致删除数据库失败 1011删除数据库文件失败 1012不能读取系统表中的记录 1020记录已被其他用户修改 1021硬盘剩余空间不足请加大硬盘可用空间 1022关键字重复更改记录失败 1023关闭时发生错误 1024读文件错误 1025

thinkphp中join的使用

两表的关联查询弄了很久,不想用tp很麻烦的关联模型,然后就看到了table和join,然后发现table不符合使用的要求.但是使用join出现了一堆的麻烦,先是表找不到(因为表没写完整,需要将整个表完整的写出来),再就是 SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 原因是因为连接出错:表的主键要找准,$Model->join('work ON artist.id = work.ar

MySQL中Identifier Case Sensitivity

在MySQL当中,有可能遇到表名大小写敏感的问题.其实这个跟平台(操作系统)有关,也跟系统变量lower_case_table_names有关系.下面总结一下,有兴趣可以查看官方文档"Identifier Case Sensitivity" In MySQL, databases correspond to directories within the data directory. Each table within a database corresponds to at leas

MYSQL之错误代码----mysql错误代码与JAVA实现

原文地址:MYSQL之错误代码----mysql错误代码与JAVA实现作者:戒定慧 his chapter lists the errors that may appear when you call MySQL from any host language. The first list displays server error messages. The second list displays client program messages. Server error informati

MySQL Error Code文档手册---摘自MySQL官方网站

This chapter lists the errors that may appear when you call MySQL from any host language. The first list displays server error messages. The second list displays client program messages. Server error information comes from the following files: The Er

产品列表页分类筛选、排序的算法实现(PHP)

一.简单的单条件查询 工作都是从简单的开始,先从最简单的单表查询开始,这个一般用在首页以及一些比较独立的页面,只需要查找几个符合条件的产品展示出来即可,可以使用分页或者不使用分页.下面这个是产品控制器 ProductController 中的一个函数,用于简单的查询,比如199元专区就可以使用 getTypeSimPro('price=199'); /**简单的筛选条件分类产品,单表查询 * @param string $sql 单表查询的SQL * @param int $countPerPa