SQL basic queries

// SQL Basic Queries // SELECT select column_name from table_name where column_name = condition; // UPDATE update table_name set column_name = value where ... // DELETE delete * from table_name where ... // INSERT insert into table_name (column_name1,column_name2) values (value1,value2) where ...

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.