este select crea la bd que se elimina en el drop , lo necesito es que el campo "factor me lo cree como float" ya que asi me lo crea como numeric o si pongo 0 me lo crea como int .
ej, en el caso de '0' as precio_automatico me lo crea como varchar
drop table softland.ext_est_venta
SELECT '0' as precio_automatico, 0.1 as factor ,
iw_gmovi.CantFacturada AS Cantidad_Facturada, iw_gmovi.TotLinea AS Venta,
iw_tprod.DesProd AS Articulo, ext_familias.DesFamilia AS Familia,
ext_marcas.DesMarca AS Marca, iw_tprod.codprod
INTO softland.ext_est_venta
FROM
softland.cwtauxi cwtauxi INNER JOIN
softland.iw_gsaen iw_gsaen ON cwtauxi.CodAux = iw_gsaen.CodAux INNER JOIN
softland.cwtvend cwtvend ON iw_gsaen.CodVendedor = cwtvend.VenCod INNER JOIN
softland.iw_gmovi iw_gmovi ON iw_gsaen.Tipo = iw_gmovi.Tipo AND iw_gsaen.NroInt = iw_gmovi.NroInt INNER JOIN
softland.ext_ext_tprod_atributos ext_ext_tprod_atributos INNER JOIN
softland.iw_tprod iw_tprod ON ext_ext_tprod_atributos.CodProd = iw_tprod.CodProd INNER JOIN
softland.ext_familias ext_familias ON ext_ext_tprod_atributos.CodFamilia = ext_familias.CodFamilia INNER JOIN
softland.ext_marcas ext_marcas ON ext_ext_tprod_atributos.CodMarca = ext_marcas.CodMarca ON
iw_gmovi.CodProd = iw_tprod.CodProd INNER JOIN
softland.cwtregion cwtregion ON cwtauxi.Region = cwtregion.id_Region
WHERE (iw_gsaen.Estado = 'V') AND (iw_gsaen.Tipo = 'F' OR
iw_gsaen.Tipo = 'N')
un saludo