문제

I only have MySQL installed right now but will these work fine when run in PgSQL, MS SQL, etc.?

SELECT MAX(field) as max_field FROM table
SELECT MIN(field) as max_field FROM table
SELECT SUM(field) as max_field FROM table
도움이 되었습니까?

해결책

You could check for yourself, but aggregate functions are common across most, if not all, RDBMS:

You get the idea.

다른 팁

Yes, they work well in every database.

SELECT AVG(field) as max_field FROM table -- Work fine too

All *SQL RDBMSes are designed to be used with the SQL language. ALL of them. That's why they're called *SQL RDBMSes. Aggregate functions are part of standard SQL, and therefore usable wherever SQL is usable.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top