We all know that to select all columns from a table, we can use
SELECT * FROM tableA
Is there a way to exclude column(s) from a table witho
If you want to exclude a sensitive case column like the password for example, I do this to hide the value : SELECT * , "" as password FROM tableName;
SELECT * , "" as password FROM tableName;