This article is tagged with:
Sql examples from framework
and mysql
sql examples from framework
Select * from external_patients where "patientId" = 55424;
Select * from patients where "patientId" = 55424;
Select * from patients where "firstName" like '%JohnDoe%';
Select * from users where "userId" = 12345;
etc.