Deprecated: Creation of dynamic property Automattic\Jetpack_Boost\Features\Speed_Score\Speed_Score::$modules is deprecated in /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php on line 20

Deprecated: Creation of dynamic property DIK_WXR_Importer::$options is deprecated in /home1/socaliyc/public_html/wp-content/plugins/demo-import-kit/inc/class-wxr-importer.php on line 96

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/socaliyc/public_html/wp-content/plugins/jetpack-boost/app/features/speed-score/Speed_Score.php:20) in /home1/socaliyc/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":2212,"date":"2021-09-24T16:40:56","date_gmt":"2021-09-24T11:10:56","guid":{"rendered":"https:\/\/socalledhappenings.in\/?p=2212"},"modified":"2021-09-24T16:40:59","modified_gmt":"2021-09-24T11:10:59","slug":"what-is-sql-data-base","status":"publish","type":"post","link":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/","title":{"rendered":"What is SQL ?"},"content":{"rendered":"\n

SQL<\/strong> <\/strong><\/code>is a standard language<\/a> for storing, manipulating and retrieving data<\/a> <\/code>in databases.<\/p>\n\n\n\n

What is SQL?<\/h2>\n\n\n\n

SQL<\/strong> is a standard Database language which is used to create, maintain and retrieve the data from relational databases like MySQL, Oracle, SQL Server, PostGre, etc<\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n
  • SQL stands for Structured Query Language<\/li>
  • It lets you access and manipulate data from databases<\/li><\/ul>\n\n\n\n

    RDBMS<\/h2>\n\n\n\n

    RDBMS stands for Relational Database Management System.<\/p>\n\n\n\n

    It is the basis for SQL, and for all modern database systems such as MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft Access.<\/p>\n\n\n\n

    The data in RDBMS is stored in database objects called tables. A table is a collection of related <\/mark>entries and it consists of columns and rows.<\/p>\n\n\n\n

    Database Tables<\/h2>\n\n\n\n

    A database most often contains one or more tables. Each table is identified by a name.<\/p>\n\n\n\n

    SQL Statements<\/h2>\n\n\n\n

    Most of the actions you need to perform on a database are done with SQL statements.<\/p>\n\n\n\n

    Semicolon after SQL Statements?<\/h2>\n\n\n\n

    Some database systems require a semicolon at the end of each SQL statement.<\/p>\n\n\n\n

    Semicolon is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server.<\/p>\n\n\n\n

    Keep in Mind That…<\/h2>\n\n\n\n
    • SQL keywords are NOT case sensitive: select<\/code> is the same as SELECT<\/code><\/li><\/ul>\n\n\n\n

      Some of The Most Important SQL Commands<\/h2>\n\n\n\n
      • SELECT<\/code> – extracts data from a database<\/li>
      • UPDATE<\/code> – updates data in a database<\/li>
      • DELETE<\/code> – deletes_data from a database<\/li>
      • INSERT INTO<\/code> – inserts new_data into a database<\/li>
      • CREATE DATABASE<\/code> – creates a new database<\/li>
      • ALTER DATABASE<\/code> – modifies a database<\/li>
      • CREATE TABLE<\/code> – creates a new table<\/li>
      • ALTER TABLE<\/code> – modifies a table<\/li>
      • DROP TABLE<\/code> – deletes a table<\/li>
      • CREATE INDEX<\/code> – creates an index (search key)<\/li>
      • DROP INDEX<\/code> – deletes an index<\/li><\/ul>\n\n\n\n

        The SQL SELECT Statement<\/h2>\n\n\n\n

        The SELECT<\/code> statement is used to select data from a database.<\/p>\n\n\n\n

        The data returned is stored in a result table called the result-set.<\/p>\n\n\n\n

        SELECT Syntax<\/h3>\n\n\n\n

        SELECT column1<\/em>, column2, …<\/em>
        FROM table_name<\/em>;<\/p>\n\n\n\n

        Here, column1, column2, … are the field names of the table you want to select data from. To select all the fields available in the table, use the following syntax: <\/p>\n\n\n\n

        SELECT * FROM table_name<\/em>;<\/p>\n\n\n\n

        The SQL SELECT DISTINCT Statement<\/h2>\n\n\n\n

        The SELECT DISTINCT<\/code> statement is used to return only distinct (different) values.<\/p>\n\n\n\n

        Inside a table, a column often contains many duplicate values; and sometimes you only want to list the different (distinct) values.<\/p>\n\n\n\n

        SELECT DISTINCT Syntax<\/h3>\n\n\n\n

        SELECT DISTINCT column1<\/em>, column2, …<\/em>
        FROM table_name<\/em>;<\/p>\n\n\n\n

        <\/p>\n\n\n\n

        The following SQL statement lists the number of different (distinct) customer countries:<\/p>\n\n\n\n

        Example<\/h3>\n\n\n\n

        SELECT COUNT(DISTINCT Country) FROM Customers;<\/p>\n\n\n\n

        Note: The example above will not work in Firefox!<\/strong> Because COUNT(DISTINCT column_name<\/em>) is not supported in Microsoft Access databases. Firefox is using Microsoft Access in our examples.<\/p>\n\n\n\n

        Here is the workaround for MS Access:<\/p>\n\n\n\n

        Example<\/h3>\n\n\n\n

        SELECT Count(*) AS DistinctCountries
        FROM (SELECT DISTINCT Country FROM Customers);<\/p>\n\n\n\n

        The SQL WHERE Clause<\/h2>\n\n\n\n

        The WHERE<\/code> clause is used to filter records.<\/p>\n\n\n\n

        It is used to extract only those records that fulfill a specified condition.<\/p>\n\n\n\n

        WHERE Syntax<\/h3>\n\n\n\n

        SELECT column1<\/em>, column2, …<\/em>
        FROM table_name<\/em>
        WHERE condition<\/em>;<\/p>\n\n\n\n

        Note:<\/strong> The WHERE<\/code> clause is not only used in SELECT<\/code> statements, it is also used in UPDATE<\/code>, DELETE<\/code>, etc.!<\/p>\n\n\n\n

        <\/mark><\/p>\n\n\n\n

        <\/p>\n\n\n\n

        Operators in The WHERE Clause<\/h2>\n\n\n\n

        The following operators can be used in the WHERE<\/code> clause:<\/p>\n\n\n\n

        Operator<\/th>Description<\/th><\/th><\/tr>
        =<\/td>Equal<\/td><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n
        ><\/td>Greater than<\/td><\/td><\/tr>
        <<\/td>Less than<\/td><\/td><\/tr>
        >=<\/td>Greater than or equal<\/td><\/td><\/tr>
        <=<\/td>Less than or equal<\/td><\/td><\/tr>
        <><\/td>Not equal. Note:<\/strong> In some versions of SQL this operator may be written as !=<\/td><\/td><\/tr>
        BETWEEN<\/td>Between a certain range<\/td><\/td><\/tr>
        LIKE<\/td>Search for a pattern<\/td><\/td><\/tr>
        IN<\/td>To specify multiple possible values for a column<\/td><\/tr><\/tbody><\/table><\/figure>\n","protected":false},"excerpt":{"rendered":"

        SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to create, maintain and retrieve the data from relational databases like MySQL, Oracle, SQL Server, PostGre, etc SQL stands for Structured Query Language It lets […]<\/p>\n","protected":false},"author":8,"featured_media":2213,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","enabled":false}}},"categories":[62,16],"tags":[115],"jetpack_publicize_connections":[],"yoast_head":"\nStructured Query Language<\/title>\n<meta name=\"description\" content=\"SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Structured Query Language\" \/>\n<meta property=\"og:description\" content=\"SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\" \/>\n<meta property=\"og:site_name\" content=\"So Called Happenings\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/socalledhappenings\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-24T11:10:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-24T11:10:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"680\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Akash\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@socc_happenings\" \/>\n<meta name=\"twitter:site\" content=\"@socc_happenings\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Akash\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\"},\"author\":{\"name\":\"Akash\",\"@id\":\"https:\/\/socalledhappenings.in\/#\/schema\/person\/3e84a6994ec204d98e0678b58a3ca6aa\"},\"headline\":\"What is SQL ?\",\"datePublished\":\"2021-09-24T11:10:56+00:00\",\"dateModified\":\"2021-09-24T11:10:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\"},\"wordCount\":572,\"commentCount\":529,\"publisher\":{\"@id\":\"https:\/\/socalledhappenings.in\/#organization\"},\"image\":{\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1\",\"keywords\":[\"sql\"],\"articleSection\":[\"Coding\",\"Learn\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\",\"url\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\",\"name\":\"Structured Query Language\",\"isPartOf\":{\"@id\":\"https:\/\/socalledhappenings.in\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1\",\"datePublished\":\"2021-09-24T11:10:56+00:00\",\"dateModified\":\"2021-09-24T11:10:59+00:00\",\"description\":\"SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to\",\"breadcrumb\":{\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1\",\"width\":680,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/socalledhappenings.in\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is SQL ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/socalledhappenings.in\/#website\",\"url\":\"https:\/\/socalledhappenings.in\/\",\"name\":\"So Called Happenings\",\"description\":\"One Stop for Everything!\",\"publisher\":{\"@id\":\"https:\/\/socalledhappenings.in\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/socalledhappenings.in\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/socalledhappenings.in\/#organization\",\"name\":\"So Called Happenings\",\"url\":\"https:\/\/socalledhappenings.in\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/socalledhappenings.in\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2022\/09\/cropped-Screen-Shot-2022-09-08-at-10.44.50-PM.png?fit=633%2C633&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2022\/09\/cropped-Screen-Shot-2022-09-08-at-10.44.50-PM.png?fit=633%2C633&ssl=1\",\"width\":633,\"height\":633,\"caption\":\"So Called Happenings\"},\"image\":{\"@id\":\"https:\/\/socalledhappenings.in\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/socalledhappenings\",\"https:\/\/x.com\/socc_happenings\",\"https:\/\/www.instagram.com\/socalledhappenings\/\",\"https:\/\/www.linkedin.com\/company\/socalledhappenings\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/socalledhappenings.in\/#\/schema\/person\/3e84a6994ec204d98e0678b58a3ca6aa\",\"name\":\"Akash\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/socalledhappenings.in\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9953bb3ea8beb539bbbf11062bbe289b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9953bb3ea8beb539bbbf11062bbe289b?s=96&d=mm&r=g\",\"caption\":\"Akash\"},\"url\":\"https:\/\/socalledhappenings.in\/author\/akash\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Structured Query Language","description":"SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/","og_locale":"en_US","og_type":"article","og_title":"Structured Query Language","og_description":"SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to","og_url":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/","og_site_name":"So Called Happenings","article_publisher":"https:\/\/www.facebook.com\/socalledhappenings","article_published_time":"2021-09-24T11:10:56+00:00","article_modified_time":"2021-09-24T11:10:59+00:00","og_image":[{"width":680,"height":680,"url":"https:\/\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg","type":"image\/jpeg"}],"author":"Akash","twitter_card":"summary_large_image","twitter_creator":"@socc_happenings","twitter_site":"@socc_happenings","twitter_misc":{"Written by":"Akash","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#article","isPartOf":{"@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/"},"author":{"name":"Akash","@id":"https:\/\/socalledhappenings.in\/#\/schema\/person\/3e84a6994ec204d98e0678b58a3ca6aa"},"headline":"What is SQL ?","datePublished":"2021-09-24T11:10:56+00:00","dateModified":"2021-09-24T11:10:59+00:00","mainEntityOfPage":{"@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/"},"wordCount":572,"commentCount":529,"publisher":{"@id":"https:\/\/socalledhappenings.in\/#organization"},"image":{"@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1","keywords":["sql"],"articleSection":["Coding","Learn"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/","url":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/","name":"Structured Query Language","isPartOf":{"@id":"https:\/\/socalledhappenings.in\/#website"},"primaryImageOfPage":{"@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage"},"image":{"@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1","datePublished":"2021-09-24T11:10:56+00:00","dateModified":"2021-09-24T11:10:59+00:00","description":"SQL is a standard language for storing, manipulating and retrieving data in databases. What is SQL? SQL is a standard Database language which is used to","breadcrumb":{"@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/socalledhappenings.in\/what-is-sql-data-base\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#primaryimage","url":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1","contentUrl":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1","width":680,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/socalledhappenings.in\/what-is-sql-data-base\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/socalledhappenings.in\/"},{"@type":"ListItem","position":2,"name":"What is SQL ?"}]},{"@type":"WebSite","@id":"https:\/\/socalledhappenings.in\/#website","url":"https:\/\/socalledhappenings.in\/","name":"So Called Happenings","description":"One Stop for Everything!","publisher":{"@id":"https:\/\/socalledhappenings.in\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/socalledhappenings.in\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/socalledhappenings.in\/#organization","name":"So Called Happenings","url":"https:\/\/socalledhappenings.in\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/socalledhappenings.in\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2022\/09\/cropped-Screen-Shot-2022-09-08-at-10.44.50-PM.png?fit=633%2C633&ssl=1","contentUrl":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2022\/09\/cropped-Screen-Shot-2022-09-08-at-10.44.50-PM.png?fit=633%2C633&ssl=1","width":633,"height":633,"caption":"So Called Happenings"},"image":{"@id":"https:\/\/socalledhappenings.in\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/socalledhappenings","https:\/\/x.com\/socc_happenings","https:\/\/www.instagram.com\/socalledhappenings\/","https:\/\/www.linkedin.com\/company\/socalledhappenings"]},{"@type":"Person","@id":"https:\/\/socalledhappenings.in\/#\/schema\/person\/3e84a6994ec204d98e0678b58a3ca6aa","name":"Akash","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/socalledhappenings.in\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9953bb3ea8beb539bbbf11062bbe289b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9953bb3ea8beb539bbbf11062bbe289b?s=96&d=mm&r=g","caption":"Akash"},"url":"https:\/\/socalledhappenings.in\/author\/akash\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/i0.wp.com\/socalledhappenings.in\/wp-content\/uploads\/2021\/09\/SQL-server.jpg?fit=680%2C680&ssl=1","jetpack_shortlink":"https:\/\/wp.me\/pdjPUl-zG","_links":{"self":[{"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/posts\/2212"}],"collection":[{"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/comments?post=2212"}],"version-history":[{"count":5,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/posts\/2212\/revisions"}],"predecessor-version":[{"id":2288,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/posts\/2212\/revisions\/2288"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/media\/2213"}],"wp:attachment":[{"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/media?parent=2212"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/categories?post=2212"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/socalledhappenings.in\/wp-json\/wp\/v2\/tags?post=2212"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}