not in如何改
select * from route where route_id not in (select route_id from schedule);
如果使用not exists,怎么写?
[解决办法]
select * from route where not exists (select 1 from schedule where route.route_id = schedule .route_id)