获取access中的数字行
SQL Server:
SELECT col1, col2,ROW_NUMBER() OVER (order BY col1) AS intRow FROM Table1
Access 中的等效代码是什么?
SQL Server:
SELECT col1, col2,ROW_NUMBER() OVER (order BY col1) AS intRow FROM Table1
What is the equivalent code in Access?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简而言之,没有同等的东西。如果您想要一个序列,一种方法是创建一个带有自动编号列的表。另一种方法是这样的:
但是,如果表很大,则可能性能不佳。
In short, there is no equivalent. If you want a sequence, one way to do it is to create a table with an AutoNumber column. Another way would be something like:
However, if the table is large, that may not perform well.