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

语句转换解决办法

2013-01-26 
语句转换select top 3 *from tbl_userwhere userId not in(select top 6 userId from tbl_user )转换为mys

语句转换
select top 3 *from tbl_user where userId not in(select top 6 userId from tbl_user )转换为mysql语句是什么样子的呢

[解决办法]
试试

SQL code
select  *from tbl_user where userId not in(select userId from tbl_user limit 5 )limit 3 

热点排行