overlordofevil Posted April 3, 2010 Share Posted April 3, 2010 I am reading up on exporting data from mysql with php. Everything I find tells me how to get all data so what I am wondering is there a way to set up a script to select specific data and have the system download it to a csv file. To explain I am working on a db with multiple tables all tied together with a user id. What I would like to do is do a search for all users tied to a specific group/department. Take the id and get all the data for that user. As the group/department id is only in one table and the user id is in all of them, i know i can run a query to get the ids I need but how would I run addition queries to get the data from the other table and have them exported to the file. Since the queries would be in a loop going through all the tables with the specific id would it be possible to have the script write to the file and then continue to update.. is that possible? I am sure i can figure this out but I am wondering if anyone else has worked on something like this and has some advice on what to watch out for while programing the script. Any suggestion/advice is appreciated. Thanks Bill Link to comment https://forums.phpfreaks.com/topic/197481-exporting-data-from-mysql/ Share on other sites More sharing options...
fenway Posted April 4, 2010 Share Posted April 4, 2010 Sounds like a JOIN. Link to comment https://forums.phpfreaks.com/topic/197481-exporting-data-from-mysql/#findComment-1036785 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.