Reputation: 21
I want to select only the first row from start that match my MonetDB query and to give it as output and ignoring the rest. How can I do so?
Upvotes: 1
Views: 542
Reputation: 714
You could use the SQL LIMIT clause for this, e.g.
SELECT * FROM yourtable LIMIT 1;
Upvotes: 3