Adding a Database, Table, and Data in IntelliJ

preview_player
Показать описание
The SQL code used:

CREATE TABLE Bike (
make varchar(255),
handleBars varchar(255),
frame varchar(255),
tyres varchar(255),
seatType varchar(255),
numGears int
);

INSERT INTO Bike (make, handleBars, frame, tyres, seatType, numGears)
VALUES ('Oracle Cycles', 'drop', 'tourer', 'semi-grip', 'comfort', 14);

Рекомендации по теме
Комментарии
Автор

Finally something that works.

Though man, 100% volume on all options and I can barely hear you.

zukasasteam
Автор

this is amazing Professon Vanselow, Q. what are the steps necessary to display the `databases` pane on the right ?

alute
Автор

could you do a demo how we connect mysql workbench with the jdbc in intellij?

Jiji-lozs
Автор

Hello sir,
Creation of new tables is not supported yet...how to solve this.

surajgautam