Introduction to Microsoft SQL (T-SQL) 3 - Adding and Retrieving Data

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

Комментарии • 6

  • @harshaljouras4471
    @harshaljouras4471 2 года назад +1

    Data download link is not working

    • @SQLServer101
      @SQLServer101  2 года назад

      Hi Harshal. I have just tried it, and it works for me. Phillip

  • @asmitadasgupta
    @asmitadasgupta 3 года назад +1

    I am getting an error mentioning "the row values updated or deleted either do not make the row unique or they alter multiple rows." what should I do? I have foreign keys in the table.

    • @SQLServer101
      @SQLServer101  3 года назад

      Hi Asmita. You should either use T-SQL code for this, or add another column which would make the entire row unique. An IDENTITY column would work for this purpose. Phillip

  • @asmitadasgupta
    @asmitadasgupta 3 года назад +1

    so when we are adding the data to the tables, we do not need to save them right? The cells get automatically saved, is it?

    • @SQLServer101
      @SQLServer101  3 года назад

      That's right. As soon as you leave the row, it will be saved.