Skip to content

Commit

Permalink
fixed characters
Browse files Browse the repository at this point in the history
  • Loading branch information
joric committed Jul 25, 2019
1 parent 472a220 commit df5e0e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion databases/sql-programming/actors-and-their-movies.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ NOTE:

1. Output column name has to match the given output schema.
2. Any name is the concatenation(without any delimiter) of first and last name if present
3. (E.g. if director_first_name is Alfred and director_last_name is Hitchcock then director_name is AlfredHitchcock)
3. (E.g. if director_first_name is 'Alfred' and director_last_name is 'Hitchcock' then director_name is 'AlfredHitchcock')

### Example Output

Expand Down
4 changes: 2 additions & 2 deletions databases/sql-programming/movie-character.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
https://www.interviewbit.com/problems/movie-character/


Write a SQL Query to find the movie_title and name of director (first and last names combined) who directed a movie that casted a role as SeanMaguire.
Write a SQL Query to find the movie_title and name of director (first and last names combined) who directed a movie that casted a role as 'SeanMaguire'.

### Output Schema
```
Expand All @@ -13,7 +13,7 @@ NOTE:

Output column name has to match the given output schema.
Any name is the concatenation(without any delimiter) of first and last name if present
(E.g. if director_first_name is Alfred and director_last_name is 'Hitchcock' then director_name is 'AlfredHitchcock')
(E.g. if director_first_name is 'Alfred' and director_last_name is 'Hitchcock' then director_name is 'AlfredHitchcock')

### Example Output

Expand Down

0 comments on commit df5e0e2

Please sign in to comment.