179k views
3 votes
If the "limit n" clause is not provided as part of an SQL command, all the rows of the table will get displayed. True

1 Answer

5 votes

Answer:

Step-by-step explanation:

True. If the "limit n" clause is not specified as part of an SQL command, all the rows of the table will be displayed. The "limit n" clause is used to limit the number of rows returned in a query result, so if it's not provided, the entire table will be returned by default.