Answers for "cannot cast type numeric to boolean postgresql"

SQL
0

cannot cast type numeric to boolean postgresql

ALTER TABLE products
  ALTER power_price DROP DEFAULT
 ,ALTER power_price TYPE bool USING (power_price::int::bool)
 ,ALTER power_price SET NOT NULL
 ,ALTER power_price SET DEFAULT false;
Posted by: Guest on March-02-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language