One SQL query question?
-
I have a table, studentname, age 100 records, how do i query it as studentname, age and enrolldate, the date must unique to each record. the date can be start from anydate such ...show more
-
Answer:
This case need both JOIN statement and subquery. The query should be this: SELECT sname, age, enrollment_dateFROM student,enrollment JOIN student.student_id, enrollment.student_id WHERE (SELECT UNIQUE(enrollment.enrollment_date) FROM enrollment); For this you have to create two tables that are student, enrollment and join the two table through the unique id + common to both that is student_id
A6264BVALTKOKX6WCFRU55UYUU at Yahoo! Answers Visit the source
Other answers
create another table and in that update max(date)+1 next to each record.but this will be a very dirty job. there could be another way by using row_id for each row and using a self join of 1st record of 1st table to 2nd record of the 2nd table.And then try date+1...U'll have to figure out how to do it...just an idea...all the best
Lost
Related Q & A:
- How can I optimize this dynamic SQL query in oracle with PL/SQL?Best solution by docs.oracle.com
- How to convert sql query to Hibernate Criteria query?Best solution by Stack Overflow
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to output XML from a regular SQL query?Best solution by Stack Overflow
- How to convert SQL query to LINQ query?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.