# How to Find Current APEX Version


Last week my DBA asked me what version of APEX we were running. Instinctively I loaded up the APEX development page and looked in the bottom right hand corner:

[![](https://cdn.hashnode.com/res/hashnode/image/upload/v1692190765790/ec8b142d-a8c8-450a-84b6-32f2931e4dfc.jpeg)](http://2.bp.blogspot.com/_33EF80fk9sM/TBbeBbiAPWI/AAAAAAAADxI/IL9fU9eZADA/s1600/apex_version.jpg)

This worked, however he needed to dynamically obtain the current version for a script that he was writing. After some digging around he sent me the following query:
<pre class="brush: sql;">
SELECT *
FROM apex_release
</pre>
<span style="font-style:italic;">Note: this isn't earth shattering but more for my reference</span>

