Hi @farhandsome ,
Do you mean that your collection data and your sql data are different, for example: Material field doesn't have any value in your collection, but has value in sql table?
Could you show me your Collect formula?
I assume that the formula is like this:
ClearCollect(collectionname,sql table name)
//just to save all the data in sql table to your collection
If so, the reason why you met this problem is because of sql server connector's limit.

If a SQL Server data type is not listed in the table above, it is not supported.
Examples of unsupported SQL Server data types include: binary(), varbinary(), image, cursor, rowversion, hierarchyid, sql_variant xml, Spatial Geometry Types, Spatial Geography Types, and table.
The following data types cannot be used as query option predicates:
- date
- datetime
- datetime2
- smalldatetime
So please check the fields' data type whether is supported in PowerApps.
Here's a doc about SQL Server connector in details, please check sql's limit:
https://docs.microsoft.com/en-us/connectors/sql/
Best regards,