Assume I have an insert sql statement as bellows:
insert into test (...) values (...);
If I would like to convert SQL reserved words to upper case as bellows:
INSERT INTO test (...) VALUES (...);
Any shortcut to fulfill this requirement in IntelliJ?
How-To
No comments:
Post a Comment