ted_chou12 Posted September 27, 2010 Share Posted September 27, 2010 Hi, I am wishing to add a row just by query such that it returns the queried row as if it was in the table: suppose the db has two rows: [id][name] 1test1 2test2 However, i want to added another entry: id 3, name test3 while returning the result so it appears like [id][name] 1test1 2test2 3test3 the row id3 is not actually in the db. Can you actually put something in the query so it appears like its fetching another row: SELECT * FROM album ADD (id='3' name='test3') Something like this? (I have checked join and leftjoin, i think those are joining two physical tables together, not actually adding a row.) Thanks, Ted Link to comment https://forums.phpfreaks.com/topic/214565-add-a-row-to-the-fetch-array-by-query/ Share on other sites More sharing options...
fenway Posted September 29, 2010 Share Posted September 29, 2010 Use UNION. Link to comment https://forums.phpfreaks.com/topic/214565-add-a-row-to-the-fetch-array-by-query/#findComment-1117165 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.