How would I limit the number of rows returned using the editor(tablename) format? I've used the generator to create my set of files and need to be able to select a unique set of records. I don't want all the records in the table.
There isn't a LIMIT option as such, but you could use a conditional statement (WHERE) to limit the returned data set to a sub-set of the master data.
LIMIT
WHERE
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
There isn't a
LIMIT
option as such, but you could use a conditional statement (WHERE
) to limit the returned data set to a sub-set of the master data.Allan