very basic code which we use offten in our day to day development and sometime we stucked . i write those issue here with simple solution.
You will get codes of html, css, javascript, jquery, json,ajax, node.js, vue.js, nuxt.js, php and Mysql
Friday, August 16, 2013
select mutipal record from more than one table without join
SELECT
table1.id,
table1.user_id,
table2.email,
table2.name FROM table1, table2
WHERE table1.user_id=table2.user_id
No comments:
Post a Comment