forked from loafle/openapi-generator-original
27 lines
598 B
SQL
27 lines
598 B
SQL
--
|
|
-- OpenAPI Petstore.
|
|
-- Prepared SQL queries for 'OuterObjectWithEnumProperty' definition.
|
|
--
|
|
|
|
|
|
--
|
|
-- SELECT template for table `OuterObjectWithEnumProperty`
|
|
--
|
|
SELECT `value` FROM `OuterObjectWithEnumProperty` WHERE 1;
|
|
|
|
--
|
|
-- INSERT template for table `OuterObjectWithEnumProperty`
|
|
--
|
|
INSERT INTO `OuterObjectWithEnumProperty`(`value`) VALUES (?);
|
|
|
|
--
|
|
-- UPDATE template for table `OuterObjectWithEnumProperty`
|
|
--
|
|
UPDATE `OuterObjectWithEnumProperty` SET `value` = ? WHERE 1;
|
|
|
|
--
|
|
-- DELETE template for table `OuterObjectWithEnumProperty`
|
|
--
|
|
DELETE FROM `OuterObjectWithEnumProperty` WHERE 0;
|
|
|