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.
我只想从 start 中选择与我的 MonetDB 查询匹配的第一行并将其作为输出并忽略其余部分。我该怎么做?
您可以为此使用 SQL LIMIT 子句,例如
SELECT * FROM yourtable LIMIT 1;