Unity GUI Search system?

OK I am setting up a GUI that is Linked to my database (MYSQL) Is their a way to set up my GUI display in unity so i can have a search items so players can search items in the database by name / cost and have that show up in the gui? Going to do my coding in C# (I have my XP, gold and stuff coming therew by mysql just thought id ask for ideas before i went in to doing a system so all i have to do is update my game database and the game automatically finds new items.)

my mysql is looking like:
UserOwner
ShipName
ShipType
Cost
DateAdded
DateSold

Without telling us what you use to bridge between unity and mysql I doubt that anyone can provide you a real source sample.

You have two options here, first would be relying on the MYSQL syntax (Where, Order By) and simply printing out what you got like that - alternatively would be downloading the whole database and implementing a Enumerable OrderBy together with a simple if-else to determine which are your targets.