Skip to content

yuyabu/InClauseGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

InClauseGenerator

You Can make SQL's In Clause from text which written in excel, text file, other plane text.

Paste text like this format

column name
value1
value2
value3

and push 'generate' button, script will make In Clause like this

WHERE
column name IN
(
value1,
value2,
value3
)

note:you could choice char option to add single quote both end of the value

WHERE
column name IN
(
'value1',
'value2',
'value3'
)

Releases

No releases published

Packages

No packages published