Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the design of TableA below and the records shown already in the table, how many records will be affected by the Delete statement? create

Given the design of TableA below and the records shown already in the table, how many records will be affected by the Delete statement?
create table dbo.TableA(ID int,Department varchar(100),CreateDate date)
insert dbo.TableA(ID,Department,CreateDate)
Values (1,'Finance' ,'5/13/2010')
,(2,'HR','2/21/2010')
,(3,'Engineering' ,'7/25/2010')
DELETE
from dbo.TableA
where month(CreateDate)=7

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Reliability Engineering Designing And Operating Resilient Database Systems

Authors: Laine Campbell, Charity Majors

1st Edition

978-1491925942

More Books

Students also viewed these Databases questions