implemented army scenario#21
Open
Shevawedeck wants to merge 4 commits into
Open
Conversation
ghost
reviewed
Jan 23, 2023
| SoldierID int not null identity primary key, | ||
| FirstName varchar(25) not null constraint ck_Soldier_first_name_cannot_be_blank check(FirstName <> ''), | ||
| LastName varchar(25) not null constraint ck_Soldier_last_name_cannot_be_blank check(LastName <> ''), | ||
| SSN char(10) not null constraint ck_Soldier_SSN_cannot_be_blank check(SSN <> ''), |
There was a problem hiding this comment.
SSN if you use char(10) you need to have a constraint that would make sure it's 10 characters long. And make sure they are ints (meaning you can't insert a letter).
|
You missed the reports. |
Author
|
Here are the corrections and reports |
ghost
reviewed
Jan 25, 2023
|
|
||
| /* 3) Following an upward trend in recruitment since the outbreak of Covid, I need data on recruitment between the years 2017-2019 compared to the years 2020-2022. | ||
| The format should be as follows :Year Range (2017-2019/2020-2022), First Name Last Name - SSN (date of enlistment), service unit. | ||
| (This should be done by using a union select and adding a literal column for year range.) */ |
There was a problem hiding this comment.
The report specifies how to do it. But it's ok
jacobglanz
added a commit
to jacobglanz/cpu-biz-scenario
that referenced
this pull request
Aug 15, 2023
hanochp
added a commit
to hanochp/cpu-biz-scenario
that referenced
this pull request
Aug 24, 2025
hanochp
added a commit
to hanochp/cpu-biz-scenario
that referenced
this pull request
Aug 24, 2025
hanochp
added a commit
to hanochp/cpu-biz-scenario
that referenced
this pull request
Aug 24, 2025
hanochp
added a commit
to hanochp/cpu-biz-scenario
that referenced
this pull request
Aug 25, 2025
hanochp
added a commit
to hanochp/cpu-biz-scenario
that referenced
this pull request
Aug 25, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
i did the army scenario