S tep-1: Open visual studio code. Step-2: Now we have to download the C/C++ extension. Go on the left side and click on the extension icon. Step-3: Write the c extension on the search bar . Step-4: Now install the C/C++ extension from the Microsoft . step-5: Now download the compiler extension. Go to the https://sourceforge.net/projects/mingw . click on the download button. Step-6: Now click on the MinGW file to run it and then on install button . Step-7: Click on the continue button to continue the installation. Step-8: We need to check the Mingw32-base package and Ming32-gcc-g++ package to run and compile the C/ C++ program in the visual studio code editor. Step-9: C lick on the Installation tab (at the top left corner of the dialog box). Here we click on Apply Changes to set the package's installation in MinGW , . Step-10: After click on the Apply button . Step-11: ...
CREATE DATABASE database name ; // this is use to create the datbase SHOW DATBASES // THIS is use to show all the datbase use database datbase name /// is use to use the particular datbase CREATE TABLE persons(PersonsID int,LastName varchar(255),FirstName varchar(255),Address varchar(255),City varchar(255));// use to create the datbase SHOW TABLES // use to show all the tabels present in the database DROP TABLE table name /// is use to drop the tabel from the datbase TRUNCATE TABLE table_name; // THIS IS use to dletet the data inside the table INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country) VALUES ('Cardinal', 'Tom B. Erichsen', 'Skagen 21', 'Stavanger', '4006', 'Norway'); /// use to insert the data into the colum of the table SHOW FULL TABLES; // is use to show the content inside the table desc identity; // IS USE to show the structure of the table selec...
Comments
Post a Comment