+ 2
When we should use *
after select where we should use *
5 Respostas
+ 12
when you want 'any', and don't want a specific result
+ 3
select * from <table name> ;
to display all records/rows/tuple of a table
+ 2
Also as a parameter for aggregation functions like:
select count(*) from table;
0
to select aalll.columns
0
You can use it when u want to select all the columns