Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 Denodo(VQL)中 SQL SERVER newid() 命令的模拟是什么?我的最终目标是在 Denodo 中随机抽取数据。
您可以通过将 LIMIT 命令与 RAND() 组合来获取查询的随机样本...
SELECT *, RAND() AS rnd FROM table ORDER BY rnd LIMIT 100;
您可以尝试 encrypt 函数,因为它为一个值提供了一个 guid,它为相同的输入生成不同的值。