Sort
Profile photo for Assistant
Assistant

In PostgreSQL, the equivalents of Oracle's ROWNUM and ROWID concepts are achieved using different mechanisms:

ROWNUM Equivalent

Oracle's ROWNUM is used to limit the number of rows returned by a query. In PostgreSQL, you can achieve similar functionality using the LIMIT clause. For example:

  1. SELECT * 
  2. FROM your_table 
  3. LIMIT 10; 

If you need to filter rows based on their order (like using ROWNUM in an ordered query), you can use ROW_NUMBER() with a Common Table Expression (CTE) or a subquery:

  1. WITH numbered_rows AS ( 
  2. SELECT *, ROW_NUMBER() OVER (ORDER BY some_column) AS rn 
  3. FROM your_table 
  4. ) 
  5. SELECT * 
  6. FROM 

In PostgreSQL, the equivalents of Oracle's ROWNUM and ROWID concepts are achieved using different mechanisms:

ROWNUM Equivalent

Oracle's ROWNUM is used to limit the number of rows returned by a query. In PostgreSQL, you can achieve similar functionality using the LIMIT clause. For example:

  1. SELECT * 
  2. FROM your_table 
  3. LIMIT 10; 

If you need to filter rows based on their order (like using ROWNUM in an ordered query), you can use ROW_NUMBER() with a Common Table Expression (CTE) or a subquery:

  1. WITH numbered_rows AS ( 
  2. SELECT *, ROW_NUMBER() OVER (ORDER BY some_column) AS rn 
  3. FROM your_table 
  4. ) 
  5. SELECT * 
  6. FROM numbered_rows 
  7. WHERE rn <= 10; 

ROWID Equivalent

Oracle's ROWID is a unique identifier for each row in a table, representing the physical location of the row. PostgreSQL does not have a direct equivalent, but you can use the ctid system column, which serves a similar purpose by providing a unique identifier for rows within a table:

  1. SELECT ctid, * 
  2. FROM your_table; 

Keep in mind that ctid is specific to the physical storage of the row and can change after certain operations (like VACUUM or UPDATE).

Summary

  • ROWNUM is equivalent to LIMIT or ROW_NUMBER().
  • ROWID can be represented by ctid in PostgreSQL.

If you have any further questions about PostgreSQL or need examples, feel free to ask!

Profile photo for Vinod Chelladurai

I have worked with both Oracle and PostgreSQL databases and so, I am answering this question purely based on my own experience with them.

  • Equivalent for Oracle’s ROWID

PostgreSQL contains its own system-defined columns and among such columns, you could use either ctid or oid as an equivalent for Oracle’s rowid.

ctid - It is a PostgreSQL system column of data type tid (tuple identifier). The column contains information about the physical blocks on a record level basis (row-level). However, this column value keeps changing whenever you update a record or perform full vacuum operations on a table. T

I have worked with both Oracle and PostgreSQL databases and so, I am answering this question purely based on my own experience with them.

  • Equivalent for Oracle’s ROWID

PostgreSQL contains its own system-defined columns and among such columns, you could use either ctid or oid as an equivalent for Oracle’s rowid.

ctid - It is a PostgreSQL system column of data type tid (tuple identifier). The column contains information about the physical blocks on a record level basis (row-level). However, this column value keeps changing whenever you update a record or perform full vacuum operations on a table. Therefore, you could use this column value as a unique row identifier only for temporary purposes, for example, deleting duplicates in a table. You cannot rely on this column value for deciding record level uniqueness on a table if you want to apply its usage for long-term use cases such as performing incremental inserts to a table based on the maximum/last inserted column value.

oid - Known as “object identifier”, oid contains unique values for a logical record/ row. It is of type oid (same as the column name). However, you need to explicitly create a table using “WITH OIDS” syntax for this column to be created for a table. You can check an example here.

Note :

From PostgreSQL 12, oids cannot be used anymore. This is because oid is implemented using unsigned 4 byte integer and hence, it’s dangerous to rely on them for uniqueness especially when your tables are massively growing.

Based on my personal experience with PostgreSQL, it’s always better to use a user-defined column value such as Surrogate Key to uniquely identify records if your table does not have a primary key.

  • Equivalent for Oracle’s ROWNUM

PostgreSQL does not have an exact equivalent for a rownum that you could use in your SQL “select” queries. However, you can mimic it by creating a unique value on the fly in your SQL queries.

For example (assuming your query over a table contains 3 columns),

  1. SELECT  
  2. COL_A, 
  3. COL_B, 
  4. COL_C, 
  5. ROW_NUMBER() OVER (ORDER BY COL_A ASC) AS ROWNUM 
  6. FROM _TABLE  

However, ROWNUM in Oracle is already assigned when you read a tuple from disk whereas, in the above query, you generate it after reading the tuples and hence, you need one more step when you actually want to apply the generated ROWNUM value.

Note :

You could also consider PostgreSQL’s limit as a close equivalent to ROWNUM, but you need to use one more functionality of PostgreSQL called offset when you want to mimic Oracle’s ROWNUM usage for a range filtering (such as ROWNUM between A and B). You can check for an example here.

Thanks for reading !!

நன்றி _/\_

Where do I start?

I’m a huge financial nerd, and have spent an embarrassing amount of time talking to people about their money habits.

Here are the biggest mistakes people are making and how to fix them:

Not having a separate high interest savings account

Having a separate account allows you to see the results of all your hard work and keep your money separate so you're less tempted to spend it.

Plus with rates above 5.00%, the interest you can earn compared to most banks really adds up.

Here is a list of the top savings accounts available today. Deposit $5 before moving on because this is one of th

Where do I start?

I’m a huge financial nerd, and have spent an embarrassing amount of time talking to people about their money habits.

Here are the biggest mistakes people are making and how to fix them:

Not having a separate high interest savings account

Having a separate account allows you to see the results of all your hard work and keep your money separate so you're less tempted to spend it.

Plus with rates above 5.00%, the interest you can earn compared to most banks really adds up.

Here is a list of the top savings accounts available today. Deposit $5 before moving on because this is one of the biggest mistakes and easiest ones to fix.

Overpaying on car insurance

You’ve heard it a million times before, but the average American family still overspends by $417/year on car insurance.

If you’ve been with the same insurer for years, chances are you are one of them.

Pull up Coverage.com, a free site that will compare prices for you, answer the questions on the page, and it will show you how much you could be saving.

That’s it. You’ll likely be saving a bunch of money. Here’s a link to give it a try.

Consistently being in debt

If you’ve got $10K+ in debt (credit cards…medical bills…anything really) you could use a debt relief program and potentially reduce by over 20%.

Here’s how to see if you qualify:

Head over to this Debt Relief comparison website here, then simply answer the questions to see if you qualify.

It’s as simple as that. You’ll likely end up paying less than you owed before and you could be debt free in as little as 2 years.

Missing out on free money to invest

It’s no secret that millionaires love investing, but for the rest of us, it can seem out of reach.

Times have changed. There are a number of investing platforms that will give you a bonus to open an account and get started. All you have to do is open the account and invest at least $25, and you could get up to $1000 in bonus.

Pretty sweet deal right? Here is a link to some of the best options.

Having bad credit

A low credit score can come back to bite you in so many ways in the future.

From that next rental application to getting approved for any type of loan or credit card, if you have a bad history with credit, the good news is you can fix it.

Head over to BankRate.com and answer a few questions to see if you qualify. It only takes a few minutes and could save you from a major upset down the line.

How to get started

Hope this helps! Here are the links to get started:

Have a separate savings account
Stop overpaying for car insurance
Finally get out of debt
Start investing with a free bonus
Fix your credit

Profile photo for Ben Duncan
Profile photo for Scott Emick

In MySQL you can use LIMIT to grab a subset of the query result. You must use order by to keep the order consistent.

LIMIT [OFFSET],[NumRows]

select * from customers LIMIT 1,10 returns 10 rows starting with the 2nd row.

MySQL 8 and later has the row() function to return the current row number.
before that, you must emulate it in sql. See the link below how to do that.

MySQL row_number, This Is How You Emulate It.

Profile photo for Marcin Badtke

Oracle’s SYSDATE returns datetime of the database host with second precision and without time zone.

In PostgreSQL there is no such function. Closest is LOCALTIMESTAMP with microsecond precision. It returns datetime of the beginning of the transaction.

Oracle’s SYSDATE returns datetime of the database host with second precision and without time zone.

In PostgreSQL there is no such function. Closest is LOCALTIMESTAMP with microsecond precision. It returns datetime of the beginning of the transaction.

Profile photo for Johnny M

I once met a man who drove a modest Toyota Corolla, wore beat-up sneakers, and looked like he’d lived the same way for decades. But what really caught my attention was when he casually mentioned he was retired at 45 with more money than he could ever spend. I couldn’t help but ask, “How did you do it?”

He smiled and said, “The secret to saving money is knowing where to look for the waste—and car insurance is one of the easiest places to start.”

He then walked me through a few strategies that I’d never thought of before. Here’s what I learned:

1. Make insurance companies fight for your business

Mos

I once met a man who drove a modest Toyota Corolla, wore beat-up sneakers, and looked like he’d lived the same way for decades. But what really caught my attention was when he casually mentioned he was retired at 45 with more money than he could ever spend. I couldn’t help but ask, “How did you do it?”

He smiled and said, “The secret to saving money is knowing where to look for the waste—and car insurance is one of the easiest places to start.”

He then walked me through a few strategies that I’d never thought of before. Here’s what I learned:

1. Make insurance companies fight for your business

Most people just stick with the same insurer year after year, but that’s what the companies are counting on. This guy used tools like Coverage.com to compare rates every time his policy came up for renewal. It only took him a few minutes, and he said he’d saved hundreds each year by letting insurers compete for his business.

Click here to try Coverage.com and see how much you could save today.

2. Take advantage of safe driver programs

He mentioned that some companies reward good drivers with significant discounts. By signing up for a program that tracked his driving habits for just a month, he qualified for a lower rate. “It’s like a test where you already know the answers,” he joked.

You can find a list of insurance companies offering safe driver discounts here and start saving on your next policy.

3. Bundle your policies

He bundled his auto insurance with his home insurance and saved big. “Most companies will give you a discount if you combine your policies with them. It’s easy money,” he explained. If you haven’t bundled yet, ask your insurer what discounts they offer—or look for new ones that do.

4. Drop coverage you don’t need

He also emphasized reassessing coverage every year. If your car isn’t worth much anymore, it might be time to drop collision or comprehensive coverage. “You shouldn’t be paying more to insure the car than it’s worth,” he said.

5. Look for hidden fees or overpriced add-ons

One of his final tips was to avoid extras like roadside assistance, which can often be purchased elsewhere for less. “It’s those little fees you don’t think about that add up,” he warned.

The Secret? Stop Overpaying

The real “secret” isn’t about cutting corners—it’s about being proactive. Car insurance companies are counting on you to stay complacent, but with tools like Coverage.com and a little effort, you can make sure you’re only paying for what you need—and saving hundreds in the process.

If you’re ready to start saving, take a moment to:

Saving money on auto insurance doesn’t have to be complicated—you just have to know where to look. If you'd like to support my work, feel free to use the links in this post—they help me continue creating valuable content.

Profile photo for Robert Treat

Answering this question from a *developers* point of view, I think there are a few things that stand out as key differences.

  1. Both have very advanced SQL capabilities, but you’ll need to learn the specifics for each database. Think “+” syntax for left joins or connect by in Oracle, vs ANSI standard syntax or WITH Recursive in Postgres. In general Postgres is more likely to use a standard way, and Oracle an “Oraclism”; better tends to be defined by what you are familiar with, but both have good capabilities.
  2. Rownum is really powerful and often used by Oracle developers; in Postgres people tend to

Answering this question from a *developers* point of view, I think there are a few things that stand out as key differences.

  1. Both have very advanced SQL capabilities, but you’ll need to learn the specifics for each database. Think “+” syntax for left joins or connect by in Oracle, vs ANSI standard syntax or WITH Recursive in Postgres. In general Postgres is more likely to use a standard way, and Oracle an “Oraclism”; better tends to be defined by what you are familiar with, but both have good capabilities.
  2. Rownum is really powerful and often used by Oracle developers; in Postgres people tend to play tricks with generate_series() or limit / offset. Again, your preference is likely what you are used to working with.
  3. Oracle has a robust language in pl/sql, and a much more robust package implementation that Postgres, however Postgres allows you to write language handlers in multiple languages, so you can use things like Python and R directly in the database. This is actually even more powerful than Oracle (imho), although it’s not as commonly used as Oracle packages.
  4. Oracle has more advanced query tuning capabilities, and to be honest a more advanced query optimizer, although I find that what Postgres offers already goes far beyond what most developers will generally make use of, so this is probably a wash for 99% of developers out there.
  5. Being Open Source, Postgres has a nod in breadth of libraries available for developers to connect into Postgres, however, in a few cases what Oracle offers is likely more polished than what you would get for Postgres. (Oracle + Java / JDBC comes to mind).
  6. Postgres tends to feel much more lightweight for developers, so that they don’t mind installing and reinstalling development versions on their laptops. From what I have seen, developers tend to avoid installing Oracle as much as possible given it is a more cumbersome process, and the overhead is much higher.
  7. That said, Postgres replication / failover is much less coordinated, which might affect how you need to write and manage your applications. Using something like Oracle RAC make this process somewhat easier (if not way more expensive).

Hopefully that helps. In the end, I find developers tend to be happier working with Postgres rather than Oracle, but my sample size is probably biased. I would say that there is a large set of younger developers who probably have never worked with Oracle but have with Postgres (think Rails or Django developers), so that may affect your ability to get help.

Profile photo for Adam Taylor

The Oracle TRUNC function is used to get the date with the time portion of the day truncated to a specific unit of measure. It operates according to the rules of the Gregorian calendar.

Its Syntax is:

  1. TRUNC(date [, fmt ]) 

PostgreSQL has a similar function called date_trunc(). It truncates a timestamp to specified precision, i.e.:

  1. date_trunc('datepart', field) 

The datepart argument is the level of precision used to truncate the field, which can be one of the following:

  • millennium
  • century
  • decade
  • year
  • quarter
  • month
  • week
  • day
  • hour
  • minute
  • second
  • milliseconds
  • microseconds

Here’s an example:

  1. date_trunc('hour', timestamp  

The Oracle TRUNC function is used to get the date with the time portion of the day truncated to a specific unit of measure. It operates according to the rules of the Gregorian calendar.

Its Syntax is:

  1. TRUNC(date [, fmt ]) 

PostgreSQL has a similar function called date_trunc(). It truncates a timestamp to specified precision, i.e.:

  1. date_trunc('datepart', field) 

The datepart argument is the level of precision used to truncate the field, which can be one of the following:

  • millennium
  • century
  • decade
  • year
  • quarter
  • month
  • week
  • day
  • hour
  • minute
  • second
  • milliseconds
  • microseconds

Here’s an example:

  1. date_trunc('hour', timestamp '2001-02-16 20:38:40') 

The above returns ‘2001-02-16 20:00:00’.

The database client that I use is Navicat for PostgreSQL. I like that it can show me and even insert the correct syntax in my queries.

It also has auto completion, which is very helpful! Here is the date_truc() function:

I used it to look up this answer. ;-)

Best regards!

Adam

Profile photo for Fiverr

The best freelance digital marketers can be found on Fiverr. Their talented freelancers can provide full web creation, or anything Shopify on your budget and deadline. If you’re looking for someone who can do Magento, Fiverr has the freelancers qualified to do so. If you want to do Dropshipping, PHP, or, GTmetrix, Fiverr can help with that too. Any digital marketing help you need Fiverr has freelancers qualified to take the reins. What are you waiting for? Start today.

Profile photo for Greg Kemnitz

It’s a nonstandard SQL extension supported by a few DB engines, particularly Oracle. It is not part of the SQL standard, and isn’t supported on many engines.

Here’s a link to an Oracle page discussing it: ROWNUM Pseudocolumn

In Oracle, the ROWNUM is the number of the fetched column from the query, ie if you fetch 10 rows with a query, the fifth row will be ROWNUM=5. (Oracle ROWNUMs start with 1)

You can duplicate this functionality in various ways in some other DB engines.

Profile photo for Aurelio Bautista

SQL cast operator can be used. Or the shorthand expression::int, expression::decimal … or … TO_NUMBER(string, format) function. I don't know if I ever knew it. I just put your question in Google search. I mean for TO_NUMBER, the cast with :: I use all the time because shorter than CAST(expression as numeric SQL type).

Download “When to Retire: A Quick and Easy Planning Guide” for help retiring comfortably.
Profile photo for Earl Lewis

Straight from the docs.

ROWNUM

For each row returned by a query, the ROWNUM pseudocolumn returns a number indicating the order in which Oracle selects the row from a table or set of joined rows. The first row selected has a ROWNUM of 1, the second has 2, and so on.

You can use ROWNUM to limit the number of rows returned by a query, as in this example:

  1. SELECT * FROM employees WHERE ROWNUM < 10; 
Profile photo for Grant Fritchey

Wouldn’t the TO_NUMBER function be about the same as the to_number function?

However, you can also use CAST and, a PostgreSQL short cut “::” which functions as CAST.

Thanks for the answer request.

Profile photo for Andrew Droffner

Use the SQL Standard WITH RECURSIVE … statement. It is much more verbose than Oracle’s CONNECT BY… but most SQL RDBMS servers support WITH and Common Table Expressions CTE.

Profile photo for Art Kagel

ROWNUM is a pseudo-column in a query that returns/contains the ordinal number of a tuple within the data set. It was first supported by Oracle and since adopted by several other RDBMS systems for compatibility.

Profile photo for Gautam Gupta

ROWID is a Pseudocolumn in Oracle. Read about Pseudocolumn here.

ROWID Pseudocolumn in Oracle is of ROWID datatype. It is a string that represents the address of a row in the database.

Follow me at Gautam Gupta to learn more about Oracle and SQL.

Profile photo for That Banh

ROW_NUMBER is an analytic function. It assigns a unique number to each row to which it is applied (either each row in the partition or each row returned by the query), in the ordered sequence of rows specified in the order_by_clause , beginning with 1.

Profile photo for Manish K Singh

Yes, We can use it.

Example -

  1. SELECT * FROM MAIN_TABLE  
  2. WHERE ROWNUM < 5 ORDER BY winame; 

Regards | Manish K Singh

Yes, We can use it.

Example -

  1. SELECT * FROM MAIN_TABLE  
  2. WHERE ROWNUM < 5 ORDER BY winame; 

Regards | Manish K Singh

Profile photo for Larry Creager

ROWID is a built-in column that’s part of every query and represents the order in which rows were selected (not necessarily displayed.) MAX simply identifies the last such row selected.

Profile photo for Himanshu Raghav

Row number these function in SQL Server that allow us to assign rankings to the rows of the data the basically 4 types of Row number

1.Row number

2.Rank

3.Denise Rank

4.NTile

the syntax of Row number is Rank() Over ( {Partition_By_Clause} Order_By_Clause)

Profile photo for Steve Farmer

PostgreSQL and Oracle are both powerful, full-featured relational database systems, but have some key differences:

PostgreSQL is open source, Oracle is commercial - PostgreSQL is free to use/distribute, Oracle has licenses/fees
PostgreSQL is available on all major platforms, Oracle is mainly used on Linux/UNIX
PostgreSQL has a reputation for standards compliance and simplicity, Oracle is known for a variety of advanced features and high scalability/performance
PostgreSQL has a very active open source community, Oracle's development is internal
PostgreSQL licensing is very free and flexible,

PostgreSQL and Oracle are both powerful, full-featured relational database systems, but have some key differences:

PostgreSQL is open source, Oracle is commercial - PostgreSQL is free to use/distribute, Oracle has licenses/fees
PostgreSQL is available on all major platforms, Oracle is mainly used on Linux/UNIX
PostgreSQL has a reputation for standards compliance and simplicity, Oracle is known for a variety of advanced features and high scalability/performance
PostgreSQL has a very active open source community, Oracle's development is internal
PostgreSQL licensing is very free and flexible, Oracle's licensing can be complex and costly for large deployments

So some reasons to prefer PostgreSQL would be:

Cost - Free and open source
Simplicity - Easier to setup and maintain for basic uses
Community - Active and helpful community if you need support
Flexibility - Less restrictive licensing, and able to modify code if desired

Reasons to prefer Oracle would be:

Performance/Scalability - Very capable for large/enterprise deployments
Advanced Features - Numerous advanced and enterprise-focused features
Support - Direct support from Oracle available for paying customers

Overall it depends on your specific needs, budget, and other factors. Both are very capable databases, but have distinct strengths and weaknesses.

Since MySql 8 you can do it with row_number() function

Profile photo for Greg Kemnitz

The “ctid” in Postgres/PostgreSQL is the physical disk address of a row, and it’s used for various purposes by Postgres’ storage engine.

As for its equivalent in MySQL, it should be pointed out that MySQL has many storage engines, but the most widely used nowadays is InnoDB.

In InnoDB, the closest “ctid” equivalent would be the primary key itself.

InnoDB is an “index organized” storage engine that organizes the base table data in a B-Tree structure based on the primary key. Secondary indexes store the index key and the primary key of the row, and use the PK to look up the row in the base table B-

The “ctid” in Postgres/PostgreSQL is the physical disk address of a row, and it’s used for various purposes by Postgres’ storage engine.

As for its equivalent in MySQL, it should be pointed out that MySQL has many storage engines, but the most widely used nowadays is InnoDB.

In InnoDB, the closest “ctid” equivalent would be the primary key itself.

InnoDB is an “index organized” storage engine that organizes the base table data in a B-Tree structure based on the primary key. Secondary indexes store the index key and the primary key of the row, and use the PK to look up the row in the base table B-Tree structure.

Profile photo for R M

Differences Between PostgreSQL and Oracle, and Why Someone Might Prefer PostgreSQL

PostgreSQL and Oracle are both popular relational database management systems (RDBMS) used by enterprises to manage their data. Here are some key differences between the two, and why someone might prefer PostgreSQL over Oracle:

1. Licensing Oracle is a proprietary software, which means that it requires a license to use. PostgreSQL, on the other hand, is open source software, which means that it is free to use and distribute.

2. Cost Because Oracle is a proprietary software, it can be quite expensive to use, particu

Differences Between PostgreSQL and Oracle, and Why Someone Might Prefer PostgreSQL

PostgreSQL and Oracle are both popular relational database management systems (RDBMS) used by enterprises to manage their data. Here are some key differences between the two, and why someone might prefer PostgreSQL over Oracle:

1. Licensing Oracle is a proprietary software, which means that it requires a license to use. PostgreSQL, on the other hand, is open source software, which means that it is free to use and distribute.

2. Cost Because Oracle is a proprietary software, it can be quite expensive to use, particularly for large enterprise deployments. PostgreSQL, on the other hand, is free to use, making it a more cost-effective option for many organizations.

3. Scalability Both Oracle and PostgreSQL are scalable, but Oracle is typically seen as the more scalable option, particularly for very large enterprise deployments.

4. Performance Oracle is typically seen as the more performant option, particularly when it comes to handling large amounts of data. However, PostgreSQL has improved its performance over the years and is now considered to be a very capable RDBMS.

5. Features Both Oracle and PostgreSQL have a wide range of features, but Oracle typically has more enterprise-level features, such as advanced security and high availability options.

6. Community PostgreSQL has a large and active community of developers and users who contribute to the development of the software and provide support to users. Oracle also has a community, but it is not as open or active as the PostgreSQL community.

Profile photo for Larry Creager

Rownum is a built-in virtual column of every resultset of a query that refers to the order in which rows were selected from individual or joined tables. A common use is to limit the number of rows presented in the final results.

Profile photo for Quora User

Hi,

Row Numbers is one of these functions available in sequel Server that allows us to assign rankings or numbering to the rows of the result set data. Different values can be assigned to rows.

Profile photo for Dan Lenski

COALESCE

Sure, NVL is a shorter name, but you know what?

  • No one understands what NVL stands for. It's hard to explain to noobs.
  • NVL only takes 2 arguments, whereas COALESCE takes an arbitrary number.
  • COALESCE is part of ANSI standard SQL. Every SQL database supports it, including Oracle. Only Oracle supports NVL (and apparently Informix too; see comments).
Your response is private
Was this worth your time?
This helps us sort answers on the page.
Absolutely not
Definitely yes
Profile photo for Mark Twaine

Lots of good answers here!

My two cents - from developer’s perspective:

  • both RDBMS subscribe to similar concepts - schema, tablespace, tables, indices etc
  • both support SQL-92 standard - but the advanced SQL syntax is starkly different
  • optimizers work differently between the two, do not assume same execution plans would be selected
  • both have built-n procedural extensions - Oracle PL/SQL and PostgreSQL pg/SQL (+ bunch of others); these are non-standard, and quite different, even on conceptual level. Performance also differs - pg/SQL (and others) is, in general, slower - much slower! than PL/SQL in co

Lots of good answers here!

My two cents - from developer’s perspective:

  • both RDBMS subscribe to similar concepts - schema, tablespace, tables, indices etc
  • both support SQL-92 standard - but the advanced SQL syntax is starkly different
  • optimizers work differently between the two, do not assume same execution plans would be selected
  • both have built-n procedural extensions - Oracle PL/SQL and PostgreSQL pg/SQL (+ bunch of others); these are non-standard, and quite different, even on conceptual level. Performance also differs - pg/SQL (and others) is, in general, slower - much slower! than PL/SQL in comparable situation. Also, PL/SQL is much more mature technology than any of the PostgreSQL procedural extensions.
  • both have JDBC/ODBC and OLEDB/.Net libraries for client connectivity; quality uneven for the PostgreSQL
  • both have ORM frameworks (meh!)
  • PostgreSQL is an open source, so - in theory - one could take a look under the hood; Oracle is a closely guarded secret

P.S. DBA might have much more fun comparing the two!

Profile photo for Art Kagel

Sure. In point of fact, any of the major RDBMS’s could be a valid alternative to any of the others. That includes:

  • PostgreSQL
  • Oracle
  • DB2
  • Informix
  • MySQL
  • MS SQL Server

Whether it will actually work in one’s environment depends mostly on whether and what proprietary features and specific characteristics of the RDBMS one is currently using and whether and how well the selected alternative can offer equivalent options.

Profile photo for Dave Cramer

Yes. Which is as vague as the question. In what way are you looking for it to be better or worse? Price? Infinitely better. Quality of code? Yes. Performance? Depends on what you are doing. Please qualify the question.

Profile photo for Anonymous
Anonymous

ROWNUM. For each row returned by a query, the ROWNUM pseudo-column returns a number indicating the order in which Oracle selects the row from a table or set of joined rows.

Profile photo for Praveen
  1. PostgreSQL is a free and open-source
  2. PostgreSQL offers a high degree of flexibility.
  3. PostgreSQL benefits from a large and active open-source community.
  4. PostgreSQL adheres closely to SQL standards, ensuring compatibility and portability of applications across different database systems.
  5. PostgreSQL supports advanced features like table partitioning and various indexing options for optimizing query performance.
  6. PostgreSQL provides robust replication capabilities, including asynchronous and synchronous options.
Profile photo for Mike West

lol

Can’t wait to see this list.

MySQL and PostgreSQL are toy databases.

In the real-world, we don’t take them seriously.

Profile photo for Adrian Ho

It’s…NOT EXISTS:

  1. aho=> select * from ordinals; 
  2. i  
  3. ---- 
  4. 1 
  5. 2 
  6. 3 
  7. 4 
  8. 5 
  9. 6 
  10. 7 
  11. 8 
  12. 9 
  13. 10 
  14. (10 rows) 
  15.  
  16. aho=> select * from primes; 
  17. j  
  18. ---- 
  19. 2 
  20. 3 
  21. 5 
  22. 7 
  23. 11 
  24. 13 
  25. 17 
  26. 19 
  27. (8 rows) 
  28.  
  29. aho=> select i from ordinals where not exists (select 1 from primes where j = ordinals.i); 
  30. i  
  31. ---- 
  32. 1 
  33. 4 
  34. 6 
  35. 8 
  36. 9 
  37. 10 
  38. (6 rows) 

Footnotes

Profile photo for Jan Novotný

I think there is only one big reason: you can use PostgreSQL for free, even for commercial purposes. In the case of Oracle, you should prepare a well-filled wallet if you want to use it for your projects. Oracle Standard Edition starts at $17,500 for purchase and $3,850.00 per year for support per single server processor.

PostgreSQL will give you all the standard SQL features and decent performance. If you don't need support (but this can be bought easily even for PostgreSQL), special features, or high performance, you should be good to go with PostgreSQL.

Source:

https://www.oracle.com/assets/technology-price-list-070617.pdf

I think there is only one big reason: you can use PostgreSQL for free, even for commercial purposes. In the case of Oracle, you should prepare a well-filled wallet if you want to use it for your projects. Oracle Standard Edition starts at $17,500 for purchase and $3,850.00 per year for support per single server processor.

PostgreSQL will give you all the standard SQL features and decent performance. If you don't need support (but this can be bought easily even for PostgreSQL), special features, or high performance, you should be good to go with PostgreSQL.

Source:

https://www.oracle.com/assets/technology-price-list-070617.pdf
About · Careers · Privacy · Terms · Contact · Languages · Your Ad Choices · Press ·
© Quora, Inc. 2025