SELECT

leo
Bronze 1
Bronze 1

Here is the sample query

SELECT  Amount FROM Tuition Fees
WHERE YearLevel=@YearLevel AND Semestral=@Semestral

How do i write the above query in appsheet?

Solved Solved
0 2 360
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

Hi @leo 

 

SELECT(Tuition Fees[Amount],
  AND(
    [YearLevel]=[_THISROW].[YearLevel],
    [Semestral]=|_THISROW].[Semestral]
  )
)

 

I suggest you read this:

https://help.appsheet.com/en/articles/2357308-filter

https://help.appsheet.com/en/articles/2357314-select

 

View solution in original post

2 REPLIES 2

Aurelien
Google Developer Expert
Google Developer Expert

Hi @leo 

 

SELECT(Tuition Fees[Amount],
  AND(
    [YearLevel]=[_THISROW].[YearLevel],
    [Semestral]=|_THISROW].[Semestral]
  )
)

 

I suggest you read this:

https://help.appsheet.com/en/articles/2357308-filter

https://help.appsheet.com/en/articles/2357314-select

 

Thank you so much!

Top Labels in this Space