mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-13 13:10:53 +00:00
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;
|
|
|