How do you select all columns of all rows from a table?

1 answer

Answer

1245592

2026-05-09 16:35

+ Follow

You select all columns of all rows from a table with the select * from table_name sql statement. Be careful, this can potentially be a very expensive, poor performance, network intensive type of operation - it is better to select only the columns and rows needed.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.