Home > Backend Development > PHP Tutorial > mysql语法问题

mysql语法问题

WBOY
Release: 2016-06-20 12:57:08
Original
1086 people have browsed it

SELECT (`aaa`/`bbb`) AS cccFROM testWHERE ccc > 1
Copy after login

搜寻是没问题,但是加上WHERE条件会说[Err] 1054 - Unknown column 'ccc' in 'where clause',请问要怎么修正?


回复讨论(解决方案)

SELECT (`aaa`/`bbb`) AS cccFROM testWHERE `aaa`/`bbb` > 1
Copy after login

SELECT (`aaa`/`bbb`) AS cccFROM testHAVING ccc > 1
Copy after login


注意:`aaa`/`bbb` 不会被重复计算

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template