Skip to content

Commit

Permalink
SELECT attendants.attendant_id, attendants.name
Browse files Browse the repository at this point in the history
FROM flights
JOIN attendant_flights ON flights.flight_number = attendant_flights.flight_number
JOIN attendants ON attendant_flights.attendant_id = attendants.attendant_id
WHERE flights.flight_date = '2021-04-19';
  • Loading branch information
AndersonHJB committed Dec 28, 2023
1 parent 5049c94 commit c4dba4e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/.vuepress/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export default hopeTheme({
// editLink: "在 GitHub 上编辑此页",
// },


plugins: {
// comment: false,
// You should generate and use your own comment service
Expand Down

0 comments on commit c4dba4e

Please sign in to comment.