0.1.1 • Published 7 years ago
@sql-extra/tableexists v0.1.1
@sql-extra/tableexists
Generate SQL command for table exists check.
const tableExists = require('@sql-extra/tableexists');
// tableExists(<name>)
// -> sql command
tableExists('food');
// SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name='food');