About 195,000 results
Open links in new tab
  1. SQL: enum vs reference table when values are referenced in the code

    Jul 15, 2021 · 6 This question considers whether SQL DB data should be represented as an enum or by a reference table, when the application code is aware of particular instances of …

  2. sql - JOIN vs. INNER JOIN and FULL OUTER JOIN - Software …

    The different between inner join and full outer join is that, Inner join compares, combines and return all output of all matched rows from both the tables (i.e if there is the common fields …

  3. SQL: empty string vs NULL value - Software Engineering Stack …

    In SQL, it's a nullable field, which means it's not known. I can't think of any reasonable business value in storing an empty string in a table other than simply bad design. It's like storing a string …

  4. sql - Sequel vs S-Q-L - Software Engineering Stack Exchange

    SQL was developed at IBM by Donald D. Chamberlin and Raymond F. Boyce in the early 1970s. This version, initially called SEQUEL (Structured English Query Language), was designed to …

  5. sql - Best way to store data for machine learning (Database or Files ...

    Jun 6, 2020 · Training data is mostly of the write-once, read-bulk kind, which can be handled with flat files easily. Even appending new data to existing files is absolutely no problem. As long as …

  6. sql - In what order are rows fetched absent ORDER BY clause?

    The SQL specification doesn't state the specific order that records are to be returned, so it's going to be implementation dependent. With no indexes on the table, the sensible order would be …

  7. sql - Why is prefixing column names considered bad practice?

    Person_First_Name or maybe even Person_Person_First_Name (don't ask me why you see person 2x) Why is it considered a bad practice to pre-fix column names? Are underscores …

  8. Is it a row or a record (or a tuple) - Software Engineering Stack …

    4 row=record in relational databases, those are just two terms for the same thing "SELECT" statements (not all SQL statements) deliver a result set consisting of rows or records, …

  9. sql - self referencing tables, good or bad? - Software Engineering ...

    Representing geographical locations within an application, the design of the underlying data model suggests two clear options (or maybe more?). One table with a self referencing …

  10. sql - What is selection and what is projection - Software …

    Apr 14, 2016 · I am working on Android with the query() method of the ContentResolver class and it accepts 6 parameters, (uri,projection,selection,selectionArgs,sortOrder,cancellationSignal) …