Categories
Database

SQL: Insert Statement with Examples

Another technique beside selection queries in previous post, here are some of the insertion statement with example using MS SQL syntax that may help you to get understand clearer. Insert Statement –Subqueries help in situations when its not easy to express –all the rows that need to be selected …… especially for –INSERTS, UPDATES and…

Categories
Database

Basic SQL Statements with Example

SQL or T-SQL Statement/syntax are quite important for the database developer, here are some selected basic statements with example using SQL Server that may help you to get started with sql query. Basic SELECT statement, * means all columns SELECT * FROM Customers Basic SELECT statement, specifying which columns to display SELECT FirstName, LastName FROM…