0
WRITE A SQL QUERY TO PRINT MULTIPLE ROWS
WRITE A SQL QUERY TO PRINT MULTIPLE ROWS IN A TABLE (EX:IN TABLE I HAVE 20 ROWS AND PRINT 60ROWS IN SAME TABLE USING SAME ROWS)
2 Antworten
0
no, you can't enter many values at the same time
you have to enter one by one using
Insert Into table_name values (......)
later for fetching the data you can use
Select * from table_name;
or
Select sno, Name from table_name
where ........ ;
0
Anil Kumar It seems your question appears to be an assignment. Please show us your attempt and use the 8 rules to get help from the community.
https://www.sololearn.com/Blog/38/8-simple-rules-to-get-help-from-the-community
*can be a code coach solution which is meant for you to do to help you establish your skills abilities and where you need to learn... not the community
*one issued by a school or other institution
*one issued or created by another platform
*one that appears to be in the form of a challenge that was created by you or somewhere else.
Your question will be reviewed by a team of moderators and will most likely be marked for deletion.
https://www.sololearn.com/Discuss/1316935/?ref=app