External Article

The SELECT Statement in Oracle

The SELECT statement is used to retrieve information from a database. Following the execution of a SELECT statement, a tabular result is held in a result table (called a result set). It allows you to select the table columns depending on a set of criteria. In this article, I will introduce the basic SELECT statement fetching data from just one table.

SQLServerCentral Editorial

Highly Skilled

The highly skilled people are changing and getting jobs. A recent report notes this is of concern to executives and hiring practices may be changing. Steve has a few hints for how you can grow your own career and find new opportunities.

External Article

Overcoming Organization Challenges in Cloud Migration: A Webinar for Senior IT Leaders

Is your team looking to modernize and migrate your data but have questions about the complex organizational challenges? This webinar panel on June 29th covers all aspects of data modernization and migration that senior IT leaders should be aware of, including organization culture, communication, and politics. Why not send it to your boss?

SQLServerCentral Article

Horizontal Trees

Introduction The sp_HorizontalTree procedure introduced here may be used to audit tables with dependent columns. A column is dependent on another if the meaning of the first column depends on the meaning of the second. For example, in a table containing accounting information, the meaning of a Fiscal Quarter column depends on the Fiscal Year to […]

Blogs

Monday Monitor Tips: Projecting Disk Space

By

One of the things that many DBAs struggle with is managing space across an...

SQL from A to Z: Your Path to SQL Mastery this Fall

By

I'm excited to tell you about the "SQL from A to Z" learning track....

Introduction to Advanced Analytics

By

The post Introduction to Advanced Analytics appeared first on Joyful Craftsmen.

Read the latest Blogs

Forums

The Cloud Security Problem

By Steve Jones - SSC Editor

Comments posted to this topic are about the item The Cloud Security Problem, which...

problem with PIVOT Table

By DaveBriCam

Thanks in Advance! I'm having trouble grouping all counts and sums on one line...

Merge rows in SQL

By Neils

I have a table like below ID Ident source val opendate closedate IsActive --------------------------------------------------------...

Visit the forum

Question of the Day

AUTO_DROP Statistics

In SQL Server 2022, what does this statement do?

CREATE STATISTICS CustomerStats1 ON DimCustomer (CustomerKey, EmailAddress) WITH AUTO_DROP = ON

See possible answers