+ 1
why do we use * in sql?
5 Answers
+ 5
* means "all" in mysql
+ 4
To select all the elements.
for eg:-
If you write
SELECT * FROM Customer
it will select all the columns from the Customer table.
+ 2
You're welcome ^_^
+ 2
* use for select all.
+ 1
thanks bro..