This query is marked as a draft This query has been published by Rdrg109.

SQL

AخA
 
WITH items AS (
      SELECT 'E300' as a, 2 as b, 3 as c
UNION SELECT 'E100' as a, 20 as b, 30 as c
UNION SELECT 'E200' as a, 200 as b, 300 as c
)
SELECT CONVERT(SUBSTRING_INDEX(a, 'E', -1), UNSIGNED INTEGER) AS num FROM items 
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...