At T Data Engineer Interview Guide

The At T data engineer loop, round by round: what each stage tests, example questions with the guidance interviewers actually score, the mistakes that sink strong candidates, and how to prepare.

Last updated: Proudly published by: Jeff Wahl
The technical bar

With no open data engineering roles listed as of Aug 2, 2026, the interview pool for At T is thin, so ground your technical prep in the company's known stack and operating reality. AT&T runs a massive on-premise and hybrid infrastructure, which means SQL fluency on large relational systems matters more here than at cloud-native companies. Expect questions on pipeline reliability: retry logic, idempotency, late-arriving data, and SLA enforcement across batch jobs. Data modeling questions tend to focus on schema design for high-volume transactional or event data, not dimensional modeling for a clean warehouse. A strong answer here names failure modes explicitly and describes how you'd monitor for them, not just how you'd build the happy path.

Prepare for the interview
01 / Open invite
02min.

Walk into At T knowing the SQL pattern they'll test.

a At T SQL query, the same shape a screen would give you.
The diff against expected. Where ties broke. What you missed.
sandbox
1SELECT user_id,
2 COUNT(*) AS sessions
3FROM events
4WHERE ts >= NOW() - INTERVAL '7 day'
5
Execute your solution0.4s avg.
CoinbaseInterview question
Solve a At T problem
Where offers are lost

The failure mode that shows up repeatedly in AT&T DE interviews is candidates who perform well technically but read as people who need a clean environment to succeed. Answers that assume modern tooling, well-documented APIs, or cooperative upstream teams signal misfit. The inverse of that, describing how you've debugged pipelines with poor observability, negotiated SLA contracts with non-engineering stakeholders, or backfilled data after a schema change with no rollback, reads as a strong hire. A Glassdoor of 3.4 puts AT&T toward the bottom of the pack, and internal stress is real; interviewers are often assessing whether you'll stay functional in that environment, not just whether you can write a DAG.

Try a At T-style SQL round

Find every user active on 3 or more CONSECUTIVE days. This gaps-and-islands shape shows up in nearly every DE SQL round. Edit the query and run it against the seed data.

/* Users active on 3+ consecutive days. */
/* Hint: date minus a per-user ROW_NUMBER is constant within a streak. */
WITH streaks AS (
SELECT
user_id,
activity_date,
activity_date - CAST(
(ROW_NUMBER() OVER (
PARTITION BY user_id
ORDER BY activity_date
))
AS INT
) AS grp
FROM user_sessions
)
SELECT
user_id
FROM streaks
GROUP BY user_id, grp
HAVING COUNT(*) >= 3
What the loop filters for

AT&T's data engineering loop is designed to filter for engineers who can operate inside a large, slow-moving infrastructure organization without losing rigor. The company runs one of the largest telecommunications networks in the US, and the data problems that creates, billing at scale, network telemetry, customer churn modeling, are not greenfield. The interviewers are looking for candidates who can inherit messy systems, make pragmatic calls without full information, and still hold the line on data quality. Ownership is the signal they weight most: not just building a pipeline but being the person who notices when it breaks at 2am and understands why. If your experience is mostly greenfield at fast-moving companies, the framing of your answers here matters more than the technical content.

The First Door

> Marketing credits each user's acquisition to their first-touch channel: whatever they did first. For each user, return the user_id and that first event's `event_type`, labeled `first_channel`.

Prep allocation

The most valuable prep for this loop is hands-on work with operational failure scenarios: build a pipeline, break it intentionally, and practice explaining the failure and recovery. Given that stack and tooling tokens aren't available here, default to SQL-heavy prep with an emphasis on query performance on large tables, not just correctness. At L6, which is staff level, $201K is the median with 10 datapoints behind it, and the bar shifts toward system design and cross-team influence. Entry-level prep should weight execution and reliability over architecture. There are 3 ladder levels total, and interviewers will calibrate their questions to your target level, so be explicit early about the seniority you're targeting.

At T compensation and culture

The numbers, tech stack, and team structure live on the company overview.

Compare At T with other data engineering employers

How the role, pay, and loop stack up against peer companies.

02 / Why practice

Prepare at At T interview difficulty

  1. 01

    Reading a solution is not the same as writing one

    Every engineer who has frozen on a query they had read a dozen times knows the gap. The only preparation that closes it is producing the answer yourself, under time, before the interview does it for you

  2. 02

    76% of hiring managers reject on the coding task, not the resume

    From HackerRank's 2024 Developer Skills Report. Candidates who look strong on paper still fail the live screen if they haven't done timed, executable practice

  3. 03

    5 problem shapes cover 80% of data engineer loops

    Dedup, sessionization, top-N-per-group, slowly-changing dimensions, partition tricks. Writing the shapes by hand turns the unfamiliar into pattern recognition

Related Guides