<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: OrderBy is not sorting the results in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152515#M53839</link>
    <description>&lt;P&gt;&amp;nbsp; &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp; Thank you so much for the explanation&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;I thought only Row-based &amp;amp; append-only operations are possible in incremental refresh based on row tracking , I was not aware even only a specific partition can be overwritten&lt;/P&gt;</description>
    <pubDate>Mon, 30 Mar 2026 11:57:12 GMT</pubDate>
    <dc:creator>IM_01</dc:creator>
    <dc:date>2026-03-30T11:57:12Z</dc:date>
    <item>
      <title>OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152051#M53750</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I am currently using Lakeflow SDP ,&lt;/P&gt;&lt;P&gt;firstly I am creating 2 views and then joining them and creating materialized view and using order by in the materialized view create function , but the results are not sorted&amp;nbsp;&lt;BR /&gt;does order by not work on materialized view. Could anyone please help with this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 17:20:02 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152051#M53750</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-03-25T17:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152078#M53752</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/193958"&gt;@IM_01&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Unfortunately, no. The order by function in the definition of a Lakeflow SDP materialized view,&amp;nbsp;does not guarantee the stored rows will be ordered when you later query the MV.&amp;nbsp;Materialized views are stored like regular Unity Catalog tables... as in they cache the result set of your query, but the engine is free to physically store and return rows in any order unless you ORDER BY in the select that reads from the MV. So, you'll have to use order by when querying the MV.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 22:02:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152078#M53752</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-25T22:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152167#M53777</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;So only approach is I need to create view or separate delta table (after using orderby) to get the sorted results?&lt;BR /&gt;could you please confirm&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 12:48:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152167#M53777</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-03-26T12:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152170#M53778</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/193958"&gt;@IM_01&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Not exactly... You don’t need another view/table to "bake in" the order, and even if you did, it still wouldn’t guarantee ordered results.&lt;/P&gt;
&lt;P&gt;As I mentioned in my earlier reply, tables and materialized views never guarantee row order.&amp;nbsp;ORDER BY only guarantees order for the specific SELECT that contains it.&amp;nbsp;SELECT * FROM some_mv; has no guaranteed order, no matter how the MV was created. That applies to&amp;nbsp;&lt;SPAN&gt;plain Delta tables.&amp;nbsp;&lt;/SPAN&gt;Wrapping in another view doesn’t fix it either.&lt;/P&gt;
&lt;P&gt;For example, if you did something like the below...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV data-ui-element="code-block-container"&gt;
&lt;PRE&gt;CREATE VIEW sorted_v AS
SELECT * FROM my_mv ORDER BY some_col;&lt;/PRE&gt;
&lt;PRE&gt;&lt;STRONG&gt;-- Later tried to query 
&lt;/STRONG&gt;SELECT * FROM sorted_v;   --&lt;STRONG&gt; order NOT guaranteed&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;The outer query can reorder rows unless it has ORDER BY. So, the correct pattern is&amp;nbsp;always order at query time:&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV data-ui-element="code-block-container"&gt;
&lt;PRE&gt;SELECT *
FROM my_mv
ORDER BY some_col;&lt;/PRE&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;The reliable approach is not an extra MV/table. It’s ordering in every SELECT that needs sorting.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 13:20:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152170#M53778</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-26T13:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152184#M53781</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Even the tables does not guarantee ordering could you please explain me the reason just curious..&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I was in perception that using delta tables would solve problem.&lt;BR /&gt;And view its a wrapper around select I thought it would work.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 14:15:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152184#M53781</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-03-26T14:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152187#M53782</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/193958"&gt;@IM_01&lt;/a&gt;,&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;In the relational model, a table can be seen as a collection of rows, which are defined by a schema. It is important to note that collections or sets have no inherent order, meaning the rows are not arranged in a specific sequence. To obtain an ordered list for a particular query, SQL offers the ORDER BY operation, which is an extra step that converts the unordered collection into a sorted format.&lt;/P&gt;
&lt;P&gt;On a distributed engine like Spark/Databricks....Data is spread across many files and partitions.&amp;nbsp;Different tasks read different chunks in parallel.&amp;nbsp;The engine can read partitions in any order, shuffle data for joins/aggregations, and repartition files on OPTIMIZE/compaction.&lt;/P&gt;
&lt;P&gt;If Databricks had to preserve a specific global row order for every table, then it&amp;nbsp;would have to serialise a lot of work (kill parallelism).&amp;nbsp;The optimiser couldn’t freely reorder operations, and many physical optimisations (shuffles, repartitions, file compaction) would become impossible or extremely expensive.&lt;/P&gt;
&lt;P&gt;This is no different to other relational databases, by the way. I come from an Oracle background. You may find &lt;A href="https://dba.stackexchange.com/questions/318325/does-oracle-guarantee-final-output-row-order-when-it-is-set-in-the-inline-view" target="_self"&gt;this&lt;/A&gt; and &lt;A href="https://asktom.oracle.com/ords/f?p=100%3A11%3A0%3A%3A%3A%3AP11_QUESTION_ID%3A6257473400346237629" target="_self"&gt;this&lt;/A&gt; interesting.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 15:00:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152187#M53782</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-26T15:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152293#M53808</link>
      <description>&lt;P&gt;If you are interested in these kind of topics, Designing Data Intensive Applications by Martin Kleppmann is a really good read (2nd edition is availble since a while)!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2026 10:54:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152293#M53808</guid>
      <dc:creator>-werners-</dc:creator>
      <dc:date>2026-03-27T10:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152383#M53818</link>
      <description>&lt;P&gt;&amp;nbsp; &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/14792"&gt;@-werners-&lt;/a&gt;&amp;nbsp;Thanks for sharing , it seems intersecting I will go through the book&lt;BR /&gt;&amp;nbsp; &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp;I still have some confusion sorry &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; as normally when we do df.orderBy().display() it works right( as display() is action it also performs all operations thats defined prior to orderby)&lt;BR /&gt;&lt;BR /&gt;Is it like the query planner breaks down operations and engine performs the operations over each partition and if orderBy has to be maintained the optimizer has to perform orderBy for each partition and it kills parallelism as the data is distributed that I was able to follow but only confusion is when we do df.orderBy().display() and it works may be some point that I am missing in understanding sorry ..&lt;/P&gt;</description>
      <pubDate>Sat, 28 Mar 2026 17:36:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152383#M53818</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-03-28T17:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152432#M53822</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/193958"&gt;@IM_01&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;You’re not missing anything fundamental. You’re just looking at two different levels:&lt;/P&gt;
&lt;P&gt;df.orderBy(col) is just a transformation that adds a global sort node on top of the plan.&amp;nbsp;When you call display() (or show()),&amp;nbsp;Spark plans a job whose final stage is a shuffle + sort that enforces the requested ordering across all partitions.&amp;nbsp;&lt;SPAN&gt;The driver/notebook UI consumes the final, globally sorted result set and displays it to you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;Semantically, this is:&lt;/P&gt;
&lt;DIV class="l8rrz21 _1ibi0s3dn" data-ui-element="code-block-container"&gt;
&lt;PRE&gt;&lt;CODE class="markdown-code-sql p8i6j0e hljs language-sql _12n1b832"&gt;&lt;SPAN class="hljs-keyword"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="hljs-operator"&gt;*&lt;/SPAN&gt;
&lt;SPAN class="hljs-keyword"&gt;FROM&lt;/SPAN&gt; df
&lt;SPAN class="hljs-keyword"&gt;ORDER&lt;/SPAN&gt; &lt;SPAN class="hljs-keyword"&gt;BY&lt;/SPAN&gt; col;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV&gt;
&lt;DIV&gt;This is an outermost ORDER BY on a SELECT, so the engine is required to return rows in that order.&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;Parallelism isn’t killed. Spark still reads partitions in parallel, shuffles by sort key, sorts within partitions, and then&amp;nbsp;streams the sorted partitions in key order to the client.&amp;nbsp;You pay the cost of a distributed sort, but you still get a globally ordered result.&lt;/P&gt;
&lt;P class="p8i6j01 paragraph"&gt;However, when you do something like the below...&amp;nbsp;&lt;/P&gt;
&lt;DIV class="l8rrz21 _1ibi0s3dn" data-ui-element="code-block-container"&gt;
&lt;PRE&gt;&lt;CODE class="markdown-code-sql p8i6j0e hljs language-sql _12n1b832"&gt;&lt;SPAN class="hljs-keyword"&gt;CREATE&lt;/SPAN&gt; &lt;SPAN class="hljs-keyword"&gt;OR&lt;/SPAN&gt; REPLACE MATERIALIZED &lt;SPAN class="hljs-keyword"&gt;VIEW&lt;/SPAN&gt; my_mv &lt;SPAN class="hljs-keyword"&gt;AS&lt;/SPAN&gt;
&lt;SPAN class="hljs-keyword"&gt;SELECT&lt;/SPAN&gt; ...
&lt;SPAN class="hljs-keyword"&gt;FROM&lt;/SPAN&gt; v1 &lt;SPAN class="hljs-keyword"&gt;JOIN&lt;/SPAN&gt; v2 ...
&lt;SPAN class="hljs-keyword"&gt;ORDER&lt;/SPAN&gt; &lt;SPAN class="hljs-keyword"&gt;BY&lt;/SPAN&gt; some_col;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="l8rrz23 _1ibi0s3d6 _1ibi0s332 _1ibi0s3do _1ibi0s3bm _1ibi0s3ce"&gt;
&lt;DIV&gt;You’re not saying "always return results sorted". You’re just saying, "Define a table-like object whose contents come from this query."&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;In relational theory, tables (and MVs) are unordered collections. Physical file order is not part of the contract. The engine is free to drop the ORDER BY when planning the MV refresh, incrementally update only changed partitions, recluster or compact files later, and read/write partitions in any order.&lt;/P&gt;
&lt;P&gt;Especially with incremental refresh, it’s basically impossible to maintain a single global sort order cheaply every time new data arrives. Enzyme’s job is to keep the MV logically correct, not physically sorted. So even if the initial full refresh happens to write files in sorted order, later different refresh strategies (ROW_BASED, PARTITION_OVERWRITE, APPEND_ONLY, etc.), compaction, and different execution plans&amp;nbsp;can and will scramble physical order. The contract for the MV is&amp;nbsp;SELECT * FROM my_mv returns the right rows, but in unspecified order unless you ORDER BY in that SELECT.&lt;/P&gt;
&lt;P&gt;Thats why you should always sort at query time, never rely on storage order, whether it’s a Delta table, MV, or view.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Mar 2026 13:33:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152432#M53822</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-29T13:33:58Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152515#M53839</link>
      <description>&lt;P&gt;&amp;nbsp; &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/216690"&gt;@Ashwin_DSA&lt;/a&gt;&amp;nbsp; Thank you so much for the explanation&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;I thought only Row-based &amp;amp; append-only operations are possible in incremental refresh based on row tracking , I was not aware even only a specific partition can be overwritten&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2026 11:57:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152515#M53839</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-03-30T11:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152527#M53840</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/193958"&gt;@IM_01&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Yes, Databricks MVs can do more than just row‑based and append‑only incremental refresh.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;PARTITION_OVERWRITE is still incremental in the sense that...&amp;nbsp;&lt;SPAN&gt;Enzyme figures out &lt;/SPAN&gt;&lt;SPAN&gt;which partitions&lt;/SPAN&gt;&lt;SPAN&gt; changed since the last refresh...&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;rebuilds just those partitions&lt;/SPAN&gt;&lt;SPAN&gt; and overwrites them in the MV, and u&lt;/SPAN&gt;&lt;SPAN&gt;nchanged partitions are left as‑is, so you avoid a full recompute of the entire MV.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;You can see which technique was used for a given refresh via the event log.&amp;nbsp;If you see ... executed as PARTITION_OVERWRITE, that’s the partition‑level incremental path in action.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2026 13:19:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152527#M53840</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-03-30T13:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: OrderBy is not sorting the results</title>
      <link>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152576#M53846</link>
      <description>&lt;P&gt;Thanks Ashwin&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2026 18:05:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/orderby-is-not-sorting-the-results/m-p/152576#M53846</guid>
      <dc:creator>IM_01</dc:creator>
      <dc:date>2026-03-30T18:05:22Z</dc:date>
    </item>
  </channel>
</rss>

