Advertisement
juliarnasution

CREATE TABLE 'TABLEFOTO' SQL SERVER

Sep 26th, 2020
1,581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.24 KB | None | 0 0
  1. DROP TABLE IF EXISTS dbo.tablefoto
  2. CREATE TABLE dbo.tablefoto(
  3.     userid uniqueidentifier,
  4.     blob_content VARBINARY(MAX),
  5.     filename VARCHAR(100),
  6.     mime_type VARCHAR(50),
  7.     tgl_create DATETIME,
  8.     last_update DATETIME,
  9.     PRIMARY KEY(userid)
  10. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement