Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP を介して以下の MySQL クエリを実行しましたが、実行されませんでした。 colume1=MAX(colume1)正しくない結果が返されました。
colume1=MAX(colume1)
以下のクエリで間違っているのは何ですか
select colume from table_name where colume1=MAX(colume1);
SELECT colume FROM table_name WHERE colume1 = (SELECT MAX(colume1) FROM table_name);
SELECT `colume`, MAX(column1) as column1 FROM table_name