summaryrefslogtreecommitdiff
path: root/lib/input/sql
diff options
context:
space:
mode:
Diffstat (limited to 'lib/input/sql')
-rw-r--r--lib/input/sql/selectColumns.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/input/sql/selectColumns.sql b/lib/input/sql/selectColumns.sql
new file mode 100644
index 0000000..a8a224c
--- /dev/null
+++ b/lib/input/sql/selectColumns.sql
@@ -0,0 +1,5 @@
+SELECT column_name, is_nullable = 'YES', column_type, column_key = 'PRI'
+FROM information_schema.columns
+WHERE table_schema = DATABASE()
+AND table_name = ?
+ORDER BY ordinal_position