Fork of Accounts created in 2023 with blocks by Cryptic
This query is marked as a draft This query has been published by WhatamIdoing.

SQL

x
 
WITH newusers(nu_name) AS
(
  SELECT user_name
  FROM user
  WHERE user_registration LIKE '2023%'
)
SELECT COUNT(DISTINCT nu_name) AS 'accounts created in 2023'
FROM newusers;
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...