0
I have the following question, I created a stock table in sql for packaging and raw materials, with registration in the same form. I created a line for weight and another for Qtde in sql. And I created a grid with a single column "Qtde/weight" I want that in a combobox selected by Qtde or weight, look in the specific table of sql and bring in the same column of the grid. Only I can’t make that select, someone can help me ?
From what I understand you only need to get the two values,
qtde
andpeso
, and concatenate them the way you prefer. You use some framework to access the database or usesql
pure? If it issql
pure, what is the database of your application?– Daniel Dutra
sql , and I want to either pull weight or Qtde , depending on the specification of the combobox (weight or Qtde). I don’t want to join them.
– rennan