Urgent.News

What's breaking now, across thousands of outlets.

Tech

Oracle SQL: Pseudo-Columns

1. Overview & Core Concepts Definition: A pseudo-column behaves like a table column, but it is not actually stored on disk in the table. Capabilities & Restrictions: You can SELECT from pseudo-columns, but you cannot perform INSERT , UPDATE , or DELETE operations on their values. 2. Common Oracle Pseudo-Columns Oracle provides several built-in pseudo-columns for administrative, navigational, and…

Oracle SQL pseudo-columns function like regular table columns but do not store data physically on disk. They are useful for administrative, navigational, and sequence-based queries. Key pseudo-columns include ROWID, ROWNUM, NEXTVAL, CURRVAL, COLUMN_VALUE, ORA_ROWSCN, and UID and USER.

ROWID provides a unique physical address for a row, while ROWNUM assigns a sequential integer to each row returned by a query. NEXTVAL and CURRVAL retrieve values from sequence objects. COLUMN_VALUE is used for collection types or table functions, ORA_ROWSCN returns the conservative upper bound System Change Number (SCN) of the most recent change, and UID and USER return the current user ID and username.

Pseudo-columns are assigned after WHERE clause evaluation but before ORDER BY and GROUP BY. For hierarchical queries, CONNECT_BY pseudo-columns like CONNECT_BY_ISLEAF, CONNECT_BY_ISCYCLE, and SYS_CONNECT_BY_PATH are used to organize nodes into a tree structure. These pseudo-columns help inspect tree structures and manage loops.

Pseudo-columns cannot be created or indexed directly, but virtual columns, introduced in Oracle 11g, allow custom expression-based columns that can be indexed. Virtual columns differ from pseudo-columns as they are stored in the table metadata and can be physically part of the table.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

Your agent run passed. Can you prove it was allowed?

Short version: Most agent teams can show a run. Few can show, in one re-runnable command, whether that run was allowed under a policy.

  • New policy-as-code audit feature addresses run allowance gap
  • Audit checks cost, call caps, artifact contract, forbidden markers
  • Declared GenMentor contract passed all 13 archived GenMentor runs

From smartphone to sovereign agent:How native on-device intelligence reshapes the personal computing device

Abstract For fifteen years the smartphone has been a window onto intelligence that lives somewhere else. The handset captures a voice command or a photograph, ships it to a hyperscale GPU cluster, and…

  • Native on-device intelligence replaces remote cloud processing in smartphones.
  • Gemma 4 model loaded entirely onto Android phone for private inference service.
  • On-device generation reaches instant-to-human threshold, enabling agentic computing system.

More from Wednesday 23 September →