You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user wants to handle multiple data in separate tables. For example, if you have data with country_code, country_name, population and data with country_code, area, you want to join these data with country_code. By doing so, we can create new data from multiple data. In this case, we can use outer join, inner join, or left/right joins as in RDBMS, but in the first phase, we need to support at least the left outer join.
Requirements
User can
choose which tables will be joined
choose which field will be the foreign key
Design file
Testing list
When OO is
If you input "XXX", it should show "YYY"
The text was updated successfully, but these errors were encountered:
Leader
@
User story
The user wants to handle multiple data in separate tables. For example, if you have data with country_code, country_name, population and data with country_code, area, you want to join these data with country_code. By doing so, we can create new data from multiple data. In this case, we can use outer join, inner join, or left/right joins as in RDBMS, but in the first phase, we need to support at least the left outer join.
Requirements
User can
Design file
Testing list
The text was updated successfully, but these errors were encountered: