+ 2
can i join two sql queries in php ??
4 Answers
+ 3
SELECT * FROM students WHERE id = 5 OR age > 18
if you to select from 2 different column
SELECT * FROM students WHERE id = 5
union
SELECT * FROM DETAIL where age >18
+ 2
use union
Ex:
SELECT * FROM students WHERE id=5
UNION
SELECT * FROM students WHERE age>18
+ 2
yes u can join two sql queries in php
+ 1
yes u can...