首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

not in怎么改

2013-07-08 
not in如何改select * from route where route_id not in (select route_id from schedule)如果使用not e

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)

热点排行