skip to Main Content

Mysql – SQL SELECT and WHERE

I Want to select transactions under PL Category 52105 and transaction codes 9007 & 9803, but the results are are picking other transaction codes other than those 2. Where am I getting it wrong? FROM [Steward].[dbo].[vwNONFUNDED_RECOMP_04] WHERE PL_CATEGORY_CATEG_STMT IN ('52105')…

VIEW QUESTION

Laravel where condition from string

I just want to make a where clause from string as my where clause depends upon the other variable. I did like this $where_condition = "post_flight_informations.schedule_year,=,2022"; and then applied to query like this ->where($where_condition) but it is taking $where_condition as…

VIEW QUESTION
Back To Top
Search