

OK, now that we added the data into our table let see it. Once running this command, a new line will be created and added to the database with the following information, the link, the dates, and 1 as the active status. \show query insert into url (link, added,modify,status) values (‘’, NOW(),NOW(),1) I am using the following command to add one line of data to our table. VARCHAR – mean this will hold a string value.Ĭool, we have a table that we can now start to add some date.\show query create table url (link VARCHAR(100), added DATE, modify DATE, status int)
#Install mysql driver windows 10 install
Let’s run the command to create our table: Why Install MySQL on Windows 10 MySQL is free, open-source software, and you can even download the source code if you like.

To create a new database, we need to run the following command: Use the password we enter during the installation process of MySQL. \connect –mx will prompt you for the password, insert the password and press enter. Next, you need to connect to the database, run the following command: To connect the database, you can use the MySQL command. MySQL command-line shell Connecting to the database:
