M
mattia
Hi, I need to create a table B based on a table A and set two new fields.
The new table field shall have Numeric and Yes/No as data type.
Here is the query I use:
SELECT Prodotti.IDProdotto, Prodotti.DescrizioneProdotto, Prodotti.[PN
(Part Number) XBIT], Prodotti.[PN (Part Number) Produttore],
Prodotti.Valore, 1 AS Quantità , False AS Scelto INTO ProdottiTemp
FROM Prodotti;
Access sets Quantità and Scelta as Numeric values, but I have to ensure
that the new second field (Scelta) is Yes/No in order to provide in a
Mask a simple ListBox with Yes/No as possible values.
Thanks, Mattia
The new table field shall have Numeric and Yes/No as data type.
Here is the query I use:
SELECT Prodotti.IDProdotto, Prodotti.DescrizioneProdotto, Prodotti.[PN
(Part Number) XBIT], Prodotti.[PN (Part Number) Produttore],
Prodotti.Valore, 1 AS Quantità , False AS Scelto INTO ProdottiTemp
FROM Prodotti;
Access sets Quantità and Scelta as Numeric values, but I have to ensure
that the new second field (Scelta) is Yes/No in order to provide in a
Mask a simple ListBox with Yes/No as possible values.
Thanks, Mattia