database questions in sql

后端 未结 2 1411

The following query is in SQL:

SELECT r.reservation_no, f.flight_no, r.departure_date,
       f.departure_time, f.duration
  FROM flights f, reservations r
         


        
2条回答
  •  情歌与酒
    2021-01-15 09:41

    If i have understood your question correctly, then in the place of ??? you can have either the column name or the column index number.

提交回复
热议问题