Can we join tables without using JOINS IN sql? If yes then explain

Forums SQLCan we join tables without using JOINS IN sql? If yes then explain
Staff asked 2 years ago

Answers (1)

Add Answer
Ashish Kakadiya Marked As Accepted
Staff answered 2 years ago

yes , tables can be joins without the joins keyword,

–You can try it

select
First_Name,
Last_Name,
UserAccess.Is_Active
FROM Users, UserAccess
WHERE Users.UserId = UserAccess.UserId;

Subscribe

Select Categories