-1

2 つのテーブル "CAR" があり、そのフィールドは - (car_id,name) で、2 番目のテーブル "CARSFORSALE" には販売用の車が含まれています (id,car_id,....) "CARSFORSALE" テーブルから 10 行を取得する方法1 つのクエリ内の各 car_id

つまり、car_id が 7 の場合、結果は <=70 になります

4

1 に答える 1

0
select 1,car_id
union all
select 2,car_id
union all
select 3,car_id
union all
select 4,car_id
union all
select 5,car_id
union all
select 6,car_id
union all
select 7,car_id
union all
select 8,car_id
union all
select 9,car_id
union all
select 10,car_id
于 2013-10-13T20:55:14.823 に答える