mysql sqlserver,随机抽取n个记录的SQL(mysql和sqlserver)

随机抽取n个记录的SQL(mysql和sqlserver) - 应用软件 - 电脑教程网

随机抽取n个记录的SQL(mysql和sqlserver)

日期:2007-03-10   荐:
·MySQL和SQLServer比较·用ASP调用SQLServer的视图和存储过程·最近一段时间都在弄sybase和ms-sqlserv·在SQLserver中出现指定的服务并未以已·.Net下调用SQLServer2000中存储过程·SQLServer对select语句返回多条记录给·ASP.NET如何存取 SQLServer数据库图片·.Net 下对SqlServer2000中的存储过程的·SQLServer和Access、Excel数据传输简单·JSP中tomcat的SQLServer2000数据库连接   mysql: select * from tablename order by rand() limit 10sqlserver: select top 10 * from tablename order by NEWID()
标签: