Browse Source

save fuckup

pull/122/head
Zbynek Rybicka 6 years ago committed by Jeremy Nagel
parent
commit
fa4a581792
  1. 2
      tests/sample.sql

2
tests/sample.sql

@ -7925,7 +7925,7 @@ insert into `products`(`productCode`,`productName`,`productLine`,`productScale`
('S72_3212','Pont Yacht','Ships','1:72','Unimax Art Galleries','Measures 38 inches Long x 33 3/4 inches High. Includes a stand.\r\nMany extras including rigging, long boats, pilot house, anchors, etc. Comes with 2 masts, all square-rigged',414,'33.30','54.60');
DELIMITER //
CREATE PROCEDURE Set_credit_limit(IN customerNumber INT(11) NOT NULL, IN creditLimit decimal(10,2))
CREATE PROCEDURE Set_credit_limit(IN customerNumber INT(11), IN creditLimit decimal(10,2))
BEGIN
UPDATE `customers` c SET c.`creditLimit` = creditLimit WHERE c.`customerNumber` = customerNumber;
END //

Loading…
Cancel
Save