Back to Browse

MySQL: NOT NULL constraint

74.2K views
Oct 18, 2022
2:52

#MySQL #course #tutorial CREATE TABLE products ( product_id INT, product_name varchar(25), price DECIMAL(4, 2) NOT NULL ); ALTER TABLE products MODIFY price DECIMAL(4, 2) NOT NULL; INSERT INTO products VALUES(104, "cookie", NULL);

Download

1 formats

Video Formats

360pmp43.0 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

MySQL: NOT NULL constraint | NatokHD